2013-05-13 3 views

ответ

4

На самом деле это UIActionSheet и Ниже приведен код для этого

UIActionSheet *actionSheet; 

actionSheet = [[UIActionSheet alloc] initWithTitle:@"Choose Option" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles: @"Rispondi",@"Rispondi a tutti",@"inoltra",@"stampa",nil]; 
actionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque; 
[actionSheet showInView:self.view]; 
Смежные вопросы