我遇到另一个与iOS有关的问题。这次与UIView上的addSubView有关。

我在NSMutableArray中存储了一堆UIViewController类。这个想法是,根据用户从UIPickerView中选择的内容,它将选择器视图移开,然后显示与视图控制器关联的视图。

为此,我有以下代码:

[navItem setTitle: [cheatArray objectAtIndex:row]];
UIViewController* controller    = [cheatViewControllers objectAtIndex: row];
if ( controller != nil )
{
    CGPoint animateTo;
    animateTo.x =  thePickerView.bounds.size.width  / 2;
    animateTo.y = -thePickerView.bounds.size.height / 2;
    [UIView animateWithDuration:0.5f delay: 0.0f options:UIViewAnimationOptionAllowUserInteraction animations:^{ [thePickerView setCenter: animateTo]; } completion:nil];

    [self.view addSubView: controller.view];
}


唯一的问题是,当我调用addSubView时出现错误:

 -[UIView addSubView:]: unrecognized selector sent to instance 0x581ba00


我不知道该怎么发生。 addSubView如何可能是无法识别的选择器。当然,它是内置的之一。有没有人对这里发生的事情有任何想法?

最佳答案

尝试addSubview(小“ v”)
选择器区分大小写!

关于iphone - 无法识别的选择器,带有-[UIView addSubView:],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6305458/

10-13 03:58