Skip to content

Instantly share code, notes, and snippets.

View inonb's full-sized avatar

Inoue Takayuki inonb

View GitHub Profile
@inonb
inonb / gist:3038567
Created July 3, 2012 08:48
[iOS] テーブルビューの表示
// セルのセクション数を設定
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
// セルの数を設定
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
@inonb
inonb / gist:3038543
Created July 3, 2012 08:42
[iOS] アラート表示
UIAlertView *alert = [[UIAlertView alloc] init];
alert.title = @"アラート!";
[alert addButtonWithTitle:@"OK"];
[alert show];