私は 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