您的位置:首页 > 产品设计 > UI/UE

iOS-67-TLDActionSheet控件(防微信,用法与UIActionSheet相同)

2016-08-15 20:49 471 查看
1、demo包含简单的类文件:



2、使用方法和iOS原生的UIActionSheet基本一样:

// 有标题(防微信)
- (IBAction)showActionSheet:(id)sender {

TLDActionSheet *sheetView = [[TLDActionSheet alloc] initWithTitle:@"标题" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"注意!" otherButtonTitles:@[@"投诉",@"保存图片",@"发送给朋友"]];
[sheetView setTitleColor:[UIColor redColor] WithIndex:0];
[sheetView setTitleColor:[UIColor greenColor] WithIndex:2];
[sheetView setCancelTitleColor:[UIColor yellowColor]];

[sheetView show];
}

#pragma mark TLDActionSheetDelegate
-(void)actionSheet:(TLDActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
NSLog(@"buttonIndex:%ld",buttonIndex);
}


demo下载地址:http://download.csdn.net/detail/iot_li/9603974
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ios 微信 ActionShee