ほとんどの場合、私はこれを行っています:
self.someVC = [myVC alloc] initWithFrame:frame];
self.someVC.delegate = self;
デリゲート変数を自動的に設定する方法はありますか?
-(void)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.delegate = [the object that is calling initWithFrame];
..