У меня есть представление (objViewComments), которое содержит scrollview и работает нормально.но теперь я добавил это представление в UIActionsheet, используя следующий код:
myActionSheet = [[UIActionSheet alloc] initWithTitle:@"n \n \n \n \n \n \n \n" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil];
myActionSheet.actionSheetStyle = UIActionSheetStyleBlackTranslucent;
objViewComments.view.frame = CGRectMake(0, 0, 320, 480);
objViewComments.myTempActionSheet = myActionSheet;
//myActionSheet.frame = CGRectMake(0, 0, 320, 480);
[myActionSheet showInView:self.navigationController.view];
[myActionSheet addSubview:objViewComments.view];
[myActionSheet release]
Но теперь прокрутка не работает.и выдает ошибку:
[UIImageView scrollViewDidScroll:]: unrecognized selector sent to instance 0x18f480'
Спасибо