UIAlertView就是一个弹出控键
UIAlertView*uialertview= [[UIAlertView alloc]initWithTitle:@"我是提示框" message:@"该睡觉了,小子" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"haha,继续睡", nil]; [uialertview show];//捕获点击事件的时候,小小的看下代理就可以了
UIActionSheet *aa=[[UIActionSheet alloc]initWithTitle:@"www" delegate:self cancelButtonTitle:@"却笑" destructiveButtonTitle:@"shuilai" otherButtonTitles:@"gengduo", nil]; [aa showInView:self.window]; //UIActionSheet是指定了在哪个view上从下面往上弹出来
心得:这2中弹出框都是有代理的,具体用到了具体调用,
虽然又代理,其实也可以不用实现其代理,直接写方法就可以了,因为这个编译器更本没法检测到这个bug,也没必要检测,根据java里面的理解,调方法就是调一个代码块,也一样的,何必要写个代理在那呢,只是方便理解不够透彻的人吧