我有一个自定义UITableviewCell
,UIWebview
显示错误消息
respondsToSelector:发送到解除分配的实例的消息
弹出新的viewController
。
这是我的代码:
UITableViewCell *cell = [self.exhibitorDetailTbleVw cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:i]];
if ([cell isKindOfClass:[SpeakerDescriptionTableCell class]]) {
SpeakerDescriptionTableCell *cellTable = [self.exhibitorDetailTbleVw cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:i]];
[cellTable.descriptionWebView setDelegate:nil];
cellTable.descriptionWebView = nil;
[cellTable.descriptionWebView stopLoading];
}
仍然显示错误,任何想法我做错了。