iPhone 开发入门——实际开发中的应用技巧
2010-02-22 06:20:00 来源:WEB开发网核心提示:的代理,利用Objective-C 的 protocol 在 UIViewController 中处理,iPhone 开发入门——实际开发中的应用技巧(4),@interface UITestViewController : UIViewController {显示对话框在 UITestViewController.m
的代理,利用Objective-C 的 protocol 在 UIViewController 中处理。
@interface UITestViewController : UIViewController
显示对话框
在 UITestViewController.m 文件的 myAction1 中实现对话框显示。
- (IBAction)myAction1:(id)sender
{
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"select" delegate:self cancelButtonTitle:@"CANCEL" destructiveButtonTitle:@"OK" otherButtonTitles:nil];
[actionSheet showInView:self.view];
[actionSheet release];
}
- ››开发Android 日历教程
- ››开发学院总结 Win 8实用技巧大全
- ››开发学院原创教程:把win8的IE10放桌面上方法(非...
- ››iphone图片拉伸的几种方法
- ››iphone正则表达式的简单使用
- ››iPhone开发Unresolved Symbols CAKeyframeAnimati...
- ››IPhone开发-“此证书是由未知颁发机构签名”解决方...
- ››IPhone开发-整合私钥和证书,生成.p12文件
- ››iPhone应用开发-UIPickerView选取器详解
- ››iphone 获取屏幕的宽度和高度
- ››iPhone读取工程包中的二进制文件
- ››iPhone新手机 不挂YouTube APP
更多精彩
赞助商链接