09/12/28 23:55:35 7i+aCC8f0
>>127
TitleViewクラスに
id target;
-(void) setTarget:(id)tg{
target=tg;
}
作っておく
AppDelegate.m内でviwTitleをインスタンス化したあと
[viwTitle setTarget:self];
あとはviwTitle内で
[target メソッド];
もう一つは
TitleView.mで
#import "AppDelegate.h"
しといて
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
[appDelegate メソッド名];
でいける