我有一個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屬性。
我該如何點它?感謝您提前提供任何幫助。
什麼是saveGeoButton? –
我編輯了這個問題。感謝您指出 – alekhine
如何訪問本地成員viewDidLoad的Savebutton。讓它成爲班級成員。 –