Skip to content

Instantly share code, notes, and snippets.

View hiroshi's full-sized avatar
🏠
Working from home

Hiroshi Saito hiroshi

🏠
Working from home
View GitHub Profile
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"SampleTable";
if (!tweetMessages) {
UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
cell.textLabel.text = @"loading...";
cell.textLabel.textColor = [UIColor grayColor];
return cell;
}
@hiroshi
hiroshi / Gitの手順.md
Created June 24, 2011 04:34 — forked from anonymous/Gitの手順
デザイナー向けのGitの手順。詳しくは http://kuroigamen.com にいろいろあります。
  1. リモートリポジトリをローカルにクローン(複製)します。

    git clone #{リモートリポジトリのURL}

  2. クローンしたディレクトリへ移動(Change Directry)

    cd #{ローカルパス}

  3. 必要なGemを一気にインストール