首頁  >  問答  >  主體

objective-c - UITableView下拉刷新時候程式崩潰

先貼下程式碼

-(void)api:(NSString*)apiName successWithData:(id)responseData
{
    if ([apiName isEqualToString:kApi_image_list])  //比较apiName是否等于kApi_image_list (isEqualToString是字符串间的比较,==是指针间的比较)
    {
        [self.datas setArray:responseData];
    }
    [self.refreshControl endRefreshing];
    self.refreshControl.attributedTitle=[[NSAttributedString alloc]initWithString:@"下拉刷新"
                                                                       attributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
    [self.tableView reloadData];
    
}

報錯程式碼libc++abi.dylib: terminating with uncaught exception of type NSException

PHP中文网PHP中文网2748 天前495

全部回覆(0)我來回復

無回覆
  • 取消回覆