viewWillAppear中的以下内容
[SYPTableView setSeparatorInset:UIEdgeInsetsZero];
在iOS 7上运行良好但在6.1上它引发了异常:
NSInvalidArgumentException', reason: '-[UITableView setSeparatorInset:]: unrecognized selector sent to instance
我的目的是删除单元格边框。
答案 0 :(得分:11)
来自iOS 7.0的separatorInset
上提供了UITableView
属性,这就是您在iOS 6.1上获得例外的原因。
从您发布的代码中看起来您想要删除iOS 7中引入的默认插件。此类插件在iOS 6中不存在,因此您只需删除iOS 7中的插入内容。
您可以检查表格视图是否响应setSeparatorInset:
正在进行
if ([SVPTableView respondsToSelector:@selector(setSeparatorInset:)]) {
[SYPTableView setSeparatorInset:UIEdgeInsetsZero];
}
答案 1 :(得分:0)
如果您在ios 6等工作,请使用以下
SEL selector;
selector=NSSelectorFromString(@"setSeparatorInset:");
if([table respondsToSelector:selector])
{
@try {
dispatch_async(dispatch_get_main_queue(), ^{
NSMethodSignature *aSignature;
NSInvocation *anInvocation;
aSignature=[table methodSignatureForSelector:selector];
anInvocation=[NSInvocation invocationWithMethodSignature:aSignature];
[anInvocation setSelector:selector];
[anInvocation setTarget:table];
UIEdgeInsets temp=UIEdgeInsetsZero;
[anInvocation setArgument:&temp atIndex:2];
[anInvocation invoke];
});
}
@catch (NSException *exception) {
NSLog(@"EXCEPTION WHILE CALLING Separator inset => %@",[exception userInfo]);
}
@finally {
}
}