【发布时间】:2015-02-01 18:18:52
【问题描述】:
我想创建带有两个按钮的操作表,但我希望按钮具有缩略图图标,这可能吗?还有其他解决方案吗?也许有一种方法可以自定义操作表按钮......喜欢单独设计它们吗?
这是我当前的操作表方法:
- (void)tapResponder {
NSLog(@"Tap!");
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"this is a title"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles:@"one", @"two", nil];
[actionSheet showInView:self.view];
}
但我真的很喜欢继续使用 ios 设计,所以请给我一个很酷的解决方案:))
谢谢!
【问题讨论】:
标签: ios objective-c uiactionsheet uiactionsheetdelegate