-
リモートリポジトリをローカルにクローン(複製)します。
git clone #{リモートリポジトリのURL}
-
クローンしたディレクトリへ移動(Change Directry)
cd #{ローカルパス}
-
必要なGemを一気にインストール
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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; | |
} | |