@interface ViewController : UIViewController.m- (IBAction)displaySheet:(id)sender; @end
- (IBAction)displaySheet:(id)sender {
UIActionSheet *sheet = [[UIActionSheet alloc]
initWithTitle:@"你要怎麽處理檔案呢?"
delegate:self
cancelButtonTitle:@"取消"
destructiveButtonTitle:@"載入"
otherButtonTitles:@"儲存",@"刪除",nil];
[sheet showInView:self.view];
}
// 反應使用者的動作
-(void) actionSheet:(UIActionSheet *) actionSheet
clickedButtonAtIndex:(NSInteger) buttonIndex{
沒有留言:
張貼留言
注意:只有此網誌的成員可以留言。