0

このチュートリアルを使用して、非常に基本的な Twitter アプリの作成を練習しています: http://www.codeproject.com/Articles/312325/Making-a-simple-Twitter-app-using-iOS-5-Xcode-4-2 #setup-the-table-view

私のアプリの唯一の違いは、tableView ViewController のみを使用していることです。私はこれを機能させることができないようです。

ViewController.h

@interface ViewController : UIViewController {


NSArray *tweets;
}
-(void)fetchTweets;

@property (retain, nonatomic) IBOutlet UITableView *tableView;

@end

ViewController.m

#import "ViewController.h"
#import "Twitter/Twitter.h"

@interface ViewController ()

@end

@implementation ViewController
@synthesize tableView = _tableView;

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self fetchTweets];
}

- (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;
}

- (void)viewDidUnload
{
_tableView = nil;
[self setTableView:nil];
[super viewDidUnload];
// Release any retained subviews of the main view.
}



- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else {
    return YES;
}
}

@end
4

1 に答える 1

1

テーブルのデリゲートとデータソースを定義するのを忘れており、コードで見る限り、プロトコルを正しく実装していませんでした。

.h ファイルで試してください:

@interface ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
{
    // your implementation...
}

そしてあなたの.mファイルでviewDidLoad

self.tableView.dataSource = self;
self.tableView.delegate = self;

、など...メソッドはnumberOfRowscellForRowこのテーブルのデリゲートとデータソースを定義するまで機能しません:)

于 2012-04-16T20:53:56.737 に答える