カスタム セルの .h ファイルの 3 つのラベル アウトレットにリンクされているカスタム セル プロトタイプ クラス (UITableViewCell のサブクラス) に 3 つのラベルがあるプロジェクトがあります。
次に、メインのビューコントローラー クラス (プロトタイプ セルを格納し、UITableViewController のサブクラス) で、これらのラベルと対話するデリゲート メソッドは次のようになります。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"ArticleCell";
ArticleCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
int row = indexPath.row;
cell.articleTitle.text = self.articleTitles[row];
cell.articleURL.text = self.articleURLs[row];
cell.articlePreview.text = self.articleURLs[row];
return cell;
}
それでも、次の 3 つのエラーが発生します。
Connection "articleURL" cannot have a prototype object as its destination.
Connection "articlePreview" cannot have a prototype object as its destination.
Connection "articleTitle" cannot have a prototype object as its destination.
私は正確に何を間違っていますか?私は困惑している。