你知道 UIAlertView、UIActionSheet (以及它们各自的 delegate protocols) 在 iOS 8 中已经被废弃了吗?这是真的。在你的代码中按住点击 UIAlertView 或者 UIActionSheet,你就会看到最上面的注释:1UIAlertViewisdep...
分类:
其他好文 时间:
2014-12-19 13:02:29
阅读次数:
305
在iOS8之前用UIActionSheet和UIAlertView来提供按钮选择和提示性信息,比如UIActionSheet可以这样写:
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:@"title,nil时不显示"...
分类:
移动开发 时间:
2014-12-15 21:47:39
阅读次数:
240
//首先必须继承协议@interface TRViewController : UIViewController//UIAlertView功能实现- (IBAction)clicked:(id)sender { UIButton *btn = sender; //设置tag值 if (btn....
分类:
移动开发 时间:
2014-12-08 21:02:26
阅读次数:
209
iOS8把很多相识的控件结合在一起。
比如这节要讲的:UIAlertController
UIAlertController 结合了UIAlert/UIActionSheet的所有功能
// 创建代码
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"啊啊啊啊啊啊"...
分类:
移动开发 时间:
2014-12-07 17:49:28
阅读次数:
203
UIImagePickerController *camera;//点击tableView上得按钮,弹出UIActionSheet- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)ind...
分类:
其他好文 时间:
2014-12-05 16:58:02
阅读次数:
170
在动作表单中我们用很多按钮实现,在这里我们用到了UIActionsheetDelegate协议中的actionSheet:clickedButtonAtIndex:方法实现,其语法形式如下:
- (void)actionSheet:(UIActionSheet*)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
其中,(UIAct...
分类:
移动开发 时间:
2014-12-04 14:03:20
阅读次数:
226
//上传图片
-(void)showActionSheet
{
//在这里呼出下方菜单按钮项
myActionSheet = [[UIActionSheet alloc]
initWithTitle:nil
delegate:self
cancelButto...
分类:
Web程序 时间:
2014-12-03 19:26:08
阅读次数:
129
效果图:代码://点击任何处,弹出UIActionSheet-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIActionSheet *sheet=[[UIActionSheet alloc]initWithT...
分类:
其他好文 时间:
2014-12-02 14:54:22
阅读次数:
232
IOS中两大控件:UIAlertView和UIActionSheet
UIAlertView是在屏幕中央弹出一个消息框,该消息框可以用来做消息提示,也可以让用户选择不同选项。
UIActionSheet是在屏幕底端弹出一个消息框,功能类似UIAlertView,不过两者除了位置不一样外,其外观也有出入。为了能够响应UIAlertView和UIActionSheet,需要设定其代理,而对...
分类:
移动开发 时间:
2014-11-30 15:32:46
阅读次数:
186
以前在网上下了个时间选择器Demo,由于封装成UIActionSheet类型,而ios8弃用了UIActionSheet和UIAlertView,不得不对代码进行修改。将封装的UIActionSheet改为UIView,为了多态初始化时添加了枚举(几个时间选择器样式)。
UIActionSheet改为UIView核心代码为以下几个方法:
- (void)showInView:(UIView *)view; // UIPicker显示
-(void)hidePickerView; // UIPicker隐藏...
分类:
移动开发 时间:
2014-11-26 14:26:45
阅读次数:
205