如果要和UIActionSheet对象交互,那么UIViewController类的h文件需要遵循UIActionSheetDelegate协议。示例代码:
@interface BIDViewController : UIViewController
并且,需要在UIViewController类的m文件中构造一个UIActionSheet对象,同时实现协议的方法。示例代码:
- (IBAction)buttonPressed:(id)sender {
...
分类:
移动开发 时间:
2014-09-27 18:50:00
阅读次数:
185
iOS8中的UIAlertController包括了之前的UIAlertView和UIActionSheet,将它们集合成了自己的style;1------------UIAlertControllerStyleAlert-----原有的UIAlertViewUIAlertController *a...
分类:
移动开发 时间:
2014-09-25 12:48:38
阅读次数:
188
ios8 上面,用UIAlertController将UIAlertView和UIActionSheet合二为一了。(1)创建普通alert UIAlertController *alertController = [UIAlertController alertControllerWithT...
分类:
移动开发 时间:
2014-09-18 13:04:13
阅读次数:
171
这里打算记录下相关兼容问题:1. calayer中contentsGravity,在iphone 6plus中会出现问题,怀疑和后期再压缩渲染有关,移除该设置正常2. uiactionsheet,又改了,兼容方法找中3. iphone 5 320*568 2x iphone 6 375*557 2....
分类:
移动开发 时间:
2014-09-14 00:05:56
阅读次数:
212
UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"选择图片" delegate:(self) cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherB...
分类:
其他好文 时间:
2014-09-13 21:26:35
阅读次数:
279
UIActionSheet是在iOS弹出的选择按钮项,可以添加多项,并为每项添加点击事件。为了快速完成这例子,我们打开Xcode , 先建立一个single view application。然后再xib文件添加一个button,用来弹出sheet view。1、首先在.h文件中实现协议加代码的地方...
分类:
移动开发 时间:
2014-09-02 17:42:05
阅读次数:
299
#pragma mark - actionSheet- (void)shareOrder:(NSDictionary *)product{ UIActionSheet *as = [[UIActionSheet alloc] initWithTitle:VIMILocalizedString(@"....
分类:
其他好文 时间:
2014-08-24 14:06:22
阅读次数:
225
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{ UIImagePickerController * picker = [[UIImagePickerControl...
分类:
移动开发 时间:
2014-08-05 13:29:29
阅读次数:
229
【Alert】1.加入协议2.-(IBAction)btnShowAlertView:(id)sender{ UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"标题" ...
分类:
其他好文 时间:
2014-08-05 00:21:28
阅读次数:
284
-(void)shareWork:(id)sender{ UIActionSheet *share = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"关闭" destructiveButtonT....
分类:
其他好文 时间:
2014-07-29 17:01:12
阅读次数:
273