UIActionSheet 小灰灰 2022-08-01 11:07 121阅读 0赞 // // UIActionSheetViewController.m // AppUI组件学习 // // Created by 麦子 on 15/6/18. // Copyright (c) 2015年 麦子. All rights reserved. // #import "UIActionSheetViewController.h" @interface UIActionSheetViewController () @end @implementation UIActionSheetViewController - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor blackColor]; [self createView:self.view]; } - (void)createView:(id)uiView{ UIView *view = (UIView *)uiView; UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"请回答" delegate:self cancelButtonTitle:@"否" destructiveButtonTitle:@"是" otherButtonTitles:nil, nil]; actionSheet.delegate = self; [actionSheet showInView:view]; } - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonInde{ if (buttonInde == 0) { NSLog(@"确定,"); }else if(buttonInde == 1){ NSLog(@"取消"); }else{ NSLog(@"这是什么");// destructive 这个按钮时最后的 } } @end
相关 uiactionsheet 代理_UIActionSheet的各种属性、方法及代理的使用 \import "ActionSheetTestViewController.h" @implementation ActionSheetTestViewController Myth丶恋晨/ 2023年01月09日 01:26/ 0 赞/ 141 阅读
相关 IOS学习之UIActionSheet的使用 UIActionSheet是在iOS弹出的选择按钮项,可以添加多项,并为每项添加点击事件。 为了快速完成这例子,我们打开Xcode 4.3.2, 先建立一个single vi 待我称王封你为后i/ 2022年08月21日 01:20/ 0 赞/ 168 阅读
相关 UIActionSheet // // UIActionSheetViewController.m // AppUI组件学习 // // Created by 小灰灰/ 2022年08月01日 11:07/ 0 赞/ 122 阅读
还没有评论,来说两句吧...