網頁

2012年4月24日 星期二

Xcode UIActionSheet

.h UIActionSheetDelegate 記得加 否則delegate:self warning
 
@interface ViewController : UIViewController
- (IBAction)displaySheet:(id)sender;

@end
.m
 
- (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{
 

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。