Multiple methods named 'status' found with mismatched result, parameter type or attributes

出現這個這個錯誤, 有多是因爲你直接經過一個數組的索引獲取一個對象(或模型)而後直接調用這個對象(或模型)的某個方法數組

例如:對象

NSString *status = [self.models[indexPath.row] status];索引

應該改成:model

RPModel *model = self.models[indexPath.row];方法

NSString *status = model.status;錯誤

這樣就能消除這個錯誤啦...index

相關文章
相關標籤/搜索