【Xcode】TableViewで画像とテキストを並べる

Xcode の TableView で画像とテキストを並べる表示をする Objective-C のスクリプト例
—————————————————————————–
– (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@”Cell” forIndexPath:indexPath];

//テキスト
cell.textLabel.text = myArray[indexPath.row];

//画像
cell.imageView.image = [UIImage imageNamed:@”画像.gif”];

return cell;
}
—————————————————————————–

参考ページ

タイトルとURLをコピーしました