そのかなり単純です。あなたの配列がchuckJokesだとしましょう。配列をプロパティまたはクラスのメンバーとして追加するだけで、すべてのメソッドで使用できます。
次に、必要な値を配列に入力します。後で、次の方法に従って、配列に従ってテーブルビューにデータを入力します。
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [chuckJokes count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"chuck"];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"chuck"] autorelease];
}
cell.text = [chuckJokes objectAtIndex:[indexPath.row]];
return cell;
}