6つのボタンが付いたView Controllerがあります。これらの各ボタンは、ボタンの値に応じてアイテムと共に伝播される単一のテーブル ビュー コントローラーをプッシュします。ボタンが「車」、「バン」などだったとしましょう。表ビューが押されたときにボタンの値を記憶して、ボタン、つまり #car によって渡された値に基づいて Twitter 検索を行うことは可能ですか? viewDidLoad
検索に基づいてそれぞれにメソッドを割り当てることができるので、6 つの異なるテーブル ビューでこれを行うことができますが、一度だけ実行して、テーブル ビューがボタンの値を自動的に「入力」できるようにしたいと考えています。これが私のコードです:
- (void)fetchTweets
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSData* data = [NSData dataWithContentsOfURL:
[NSURL URLWithString: @"https://api.twitter.com/1/statuses/public_timeline.json"]];
NSError* error;
tweets = [NSJSONSerialization JSONObjectWithData:data
options:kNilOptions
error:&error];
dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
});
});
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return tweets.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"TweetCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSDictionary *tweet = [tweets objectAtIndex:indexPath.row];
NSString *text = [tweet objectForKey:@"text"];
NSString *name = [[tweet objectForKey:@"user"] objectForKey:@"name"];
cell.textLabel.text = text;
cell.detailTextLabel.text = [NSString stringWithFormat:@"by %@", name];
return cell;
}