0

私は iOS が初めてで、データを に表示しようとしていますUITableView。私は基本的に、著者に関するプロジェクトを設定しています。著者名などを表示したいので、Authorモデルがあり、AuthorsViewControllerこれはデータソースであり、デリゲートUITableViewなどです。ストーリーボード(MainStoryboard)テーブルビューを使用してAuthorsViewControllerおり、「アイデンティティインスペクター」で接続できました。

ストーリーボードの画像が役に立ったら、ありがとう:

まず、モデルは Author.h です。

#import <Foundation/Foundation.h>

@interface Author : NSObject

@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *book;
@property (nonatomic) int year;

@end

著者.m

#import "Author.h"

@implementation Author

@end

ここに AuthorsViewController.h があります

@interface AuthorViewController : UITableViewController
<UITableViewDataSource, UITableViewDelegate>

@end

そして AuthorsViewController.m

#import "AuthorViewController.h"

@interface AuthorViewController ()

@property (nonatomic, strong) NSMutableArray *authors;

@end

@implementation AuthorViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    _authors = [[NSMutableArray alloc] init];
    Author *auth = [[Author alloc] init];

    [auth setName:@"David Powers"];
    [auth setBook:@"PHP Solutions"];
    [auth setYear:2010];
    [_authors addObject:auth];

    auth = [[Author alloc] init];
    [auth setName:@"Lisa Snyder"];
    [auth setBook:@"PHP security"];
    [auth setYear:2011];
    [_authors addObject:auth];

    auth = [[Author alloc] init];
    [auth setName:@"Rachel Andrew"];
    [auth setBook:@"CSS3 Tips, Tricks and Hacks"];
    [auth setYear:2012];
    [_authors addObject: auth];

}

ここに画像の説明を入力 #pragma mark - テーブル ビュー データ ソース

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [_authors count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"AuthorCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell != nil)
    {
        cell = [[UITableViewCell alloc]
                initWithStyle: UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    Author *currentAuthor = [_authors objectAtIndex:[indexPath row]];
    [[cell textLabel] setText: [currentAuthor name]];

    NSLog(@"%@", [currentAuthor name]);

    return cell;
}

@end
4

1 に答える 1

2

ストーリーボードのセルでテーブル ビューを作成したので、if (cell == nil) 句はまったく必要ありません。また、viewDidLoad の最後の行として [self.tableView reloadData] を呼び出す必要があります。

于 2013-07-22T19:59:09.710 に答える