私は UIViewController のサブクラスを持っています。これをMySuperClassと呼びます。このサブクラスには、プログラムで初期化されるUITableViewプロパティがあります。MySuperClassをMySubclassにサブクラス化したいのですが、今回はプログラムではなく Interface Builder を使用してテーブルビューを設計したいと考えています。私が欲しいのは、 UIViewControllerの動作に似たものです。UIViewController をサブクラス化すると、そのビュー プロパティは既に初期化されていますが、IB に取り込むと、Interface Builder の UIView アイテムにリンクできます。これを行うにはどうすればよいですか?
私のスーパークラスのソース コードは、次のようなものです。
//interface
#import <UIKit/UIKit.h>
@interface MySuperClass : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) UITableView *tableView;
//implementation
#import "MySuperClass.h"
@implementation MySuperClass
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
[self initializeProperties];
}
return self;
}
- (void) awakeFromNib{
[super awakeFromNib];
[self initializeProperties];
}
- (void) initializeProperties{
self.tableView = [[UITableView alloc] initWithFrame: self.view.frame style: UITableViewStylePlain];
self.tableView.separatorColor = [UIColor clearColor];
self.tableView.backgroundColor = [UIColor clearColor];
self.tableView.delegate = self;
self.tableView.dataSource = self;
UIView *tableHeaderView = [[UIView alloc] initWithFrame: CGRectMake(0, 0, self.view.frame.size.width, self.bannerView.frame.size.height+kBannerDistance)];
tableHeaderView.backgroundColor = [UIColor clearColor];
self.tableView.tableHeaderView = tableHeaderView;
}