如何将 accessibilityLabel'添加到 UIAlertView'按钮
2个回答
展开全部
你可以这样做的唯一方法就找到 UIButtons UIAlertView 子视图内:
for (id button in self.alertView.subviews){
if ([button isKindOfClass:[UIButton class]]){
((UIButton *)button).accessibilityLabel = @"your custom text";
}
}
但是这是唯一的方式来这样做,因为没有一个公共的 API 来访问这些 UIButtons,这是因为苹果不想让你访问它们。访问 UIAlertView 类的内部视图是苹果不允许的事,很可能这将使您的应用程序在 App Store 期间拒绝审查过程。
如果你真的需要用自定义的 accessibilityLabel 有 UIButtons 你应该去找设计而不是使用苹果 UIAlertView 类的自定义警报视图。
for (id button in self.alertView.subviews){
if ([button isKindOfClass:[UIButton class]]){
((UIButton *)button).accessibilityLabel = @"your custom text";
}
}
但是这是唯一的方式来这样做,因为没有一个公共的 API 来访问这些 UIButtons,这是因为苹果不想让你访问它们。访问 UIAlertView 类的内部视图是苹果不允许的事,很可能这将使您的应用程序在 App Store 期间拒绝审查过程。
如果你真的需要用自定义的 accessibilityLabel 有 UIButtons 你应该去找设计而不是使用苹果 UIAlertView 类的自定义警报视图。
展开全部
很简单啊。。在点击+或者-按钮的时候设置tableview的editing为yes啊,记住点击的按钮是那个啊,可以设个bool或者其他的来记住都行,然后重写
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath根据你记住的按钮返回相应的类型啊。UITableViewCellEditingStyleDelete或者UITableViewCellEditingStyleInsert。
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath根据你记住的按钮返回相应的类型啊。UITableViewCellEditingStyleDelete或者UITableViewCellEditingStyleInsert。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询