У меня есть 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 этого подпредставления в другом методе.
Как я могу указать это?заранее спасибо за любую помощь.