2011-02-07 7 views

답변

2

사용 UIBarButtonSystemItemAction 감사합니다

UIBarButtonItem *sendMailButton = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(btnActionPressed)] autorelease]; 

을 그리고 잊지 마세요 :

- (IBAction)btnActionPressed { 
// code 
} 
+0

작품 벌금을. Thnaks. – Dilshan