设置子视图的属性

时间:2011-09-08 14:37:06

标签: iphone subview

我有一个包含子视图的UIView。

-(void) viewDidLoad
{
    geopointView = [[UIView alloc] initWithFrame:CGRectMake(0, 350, 100, 80)] ;
    UIButton *SaveButton = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain] ;
    SaveButton.frame = CGRectMake(0, 40, 100, 40) ;
    [geopointView addSubview:SaveButton];
}

我想在另一个方法中设置此子视图的userInteractionEnabled属性。

我怎么能点到它?感谢您提前提供任何帮助。

1 个答案:

答案 0 :(得分:2)

在头文件中声明savebutton。您已将其声明为本地成员。将其声明为全局变量。