iphone 窗体传值

子窗口

// header file

@property (nonatomic, copy) NSString *example;

// .m file
@synthesize example;
父窗口
// when you create the object
NewItemController *item = [[NewItemController alloc] init];
item
.example = @"example string data";

posted on 2011-07-18 16:06  风乔  阅读(129)  评论(0编辑  收藏  举报

导航