Skip to content

Instantly share code, notes, and snippets.

@inonb
Created July 22, 2012 02:48
Show Gist options
  • Save inonb/3158036 to your computer and use it in GitHub Desktop.
Save inonb/3158036 to your computer and use it in GitHub Desktop.
[iOS] テーブルセルのプレースホルダ画像
・https://dl.dropbox.com/u/26298425/3daysiOSApp/placeholder.png
の画像をDL
・プロジェクトに追加(ファイルをナビゲータエリアにドラッグ)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// セルの初期化などの後に…
cell.imageView.image = [UIImage imageNamed:@"placeholder"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment