2011-08-31 13 views
5

estoy tratando de hacer esto, pero el botón no muestran:cómo crear un botón de información programáticamente en la esquina superior derecha?

// 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]; 

¿qué estoy haciendo mal?

ACTUALIZACIÓN el código de corrección está aquí para cualquier persona que esté interesada:

// 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

tratar de agregarlo a no self.view self.tableview – TommyG

+0

gracias hizo el truco! –

+0

seguro que no hay problema! – TommyG

Respuesta

4

intento para agregarlo a self.view no self.tableview

Cuestiones relacionadas