2011-08-31 15 views
5

Bunu yapmaya çalışıyorum ama düğme göstermeyiz: Ben yanlış yapıyorumProgramın sağ üst köşesinde bir bilgi düğmesi nasıl oluşturulur?

// Create a Button to get Help   
UIButton *helpButton = [UIButton buttonWithType:UIButtonTypeInfoDark ] ; 
CGRect buttonRect = helpButton.frame; 

// Calculate the top right corner 
buttonRect.origin.x = self.tableView.frame.size.width - buttonRect.size.width - 8; 
buttonRect.origin.y = self.tableView.frame.size.height - buttonRect.size.height - 8; 
[helpButton setFrame:buttonRect]; 

[helpButton addTarget:self action:@selector(doHelp:) 
forControlEvents:UIControlEventTouchUpInside]; 
[helpButton setEnabled:TRUE]; 
[self.tableView addSubview:helpButton]; 

?

// Create a Button to get Help   
UIButton *helpButton = [UIButton buttonWithType:UIButtonTypeInfoDark ] ; 
CGRect buttonRect = helpButton.frame; 

// CALCulate the bottom right corner 
buttonRect.origin.x = self.view.frame.size.width - buttonRect.size.width - 8; 
buttonRect.origin.y = buttonRect.size.height - 8; 
[helpButton setFrame:buttonRect]; 

[helpButton addTarget:self action:@selector(doHelp:) forControlEvents:UIControlEventTouchUpInside]; 
[self.view addSubview:helpButton]; 
+3

değil self.view eklemek için deneyin self.tableview değil:

GÜNCELLEME düzeltme kodu ilgi duyan herkes burada self.tableview – TommyG

+0

teşekkürler bu hile yaptı! –

+0

emin sorun yok! – TommyG

cevap

4

deneyin self.view eklemek için

İlgili konular