开发中无意间出现Unable to deallocate send right

看到deallocate 的时候我以为是什么内存的问题


开发中无意间出现Unable to deallocate send right_第1张图片
出现问题

解决问题方法 将 代码放到主线程中去执行就可以啦

       dispatch_async(dispatch_get_main_queue(), ^{
                TH_SearchResultTea_CollectionVC * teaSearch = [[TH_SearchResultTea_CollectionVC alloc] initWithType:TH_CollectionViewVCTypeSearchTeaResult keyWords:keyString];
                [self.navigationController pushViewController:teaSearch animated:YES];
            });

你可能感兴趣的:(开发中无意间出现Unable to deallocate send right)