UIWebview respondsToSelector:发送到解除分配的实例的消息

时间:2017-01-05 07:00:28

标签: ios objective-c uiwebview

我有一个自定义UITableviewCellUIWebview显示错误消息

  

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];
     }

仍然显示错误,任何想法我做错了。

0 个答案:

没有答案