gpt4 book ai didi

objective-c - 'UIView' 没有可见的@interface 声明选择器 'addSubView:'

转载 作者:行者123 更新时间:2023-12-02 17:19:46 25 4
gpt4 key购买 nike

我是 iOS 的新手。我正在尝试在我的 View Controller 中添加 UIActivityIndi​​cator,但它显示错误,如“'UIView' 的不可见 @interface 声明选择器'addSubView:'”。我添加了我的代码以供引用。任何人都可以建议我如何解决这个问题

-(void)viewDidLoad
{
[super viewDidLoad];
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
spinner.center = CGPointMake([[UIScreen mainScreen]bounds].size.width/2, [[UIScreen mainScreen]bounds].size.height/2);
[_bcview addSubView:spinner];//bcview is the outlet connection for my viewcontroller
}

最佳答案

函数 addSubview: 拼写为小写的 v。所以你应该将 addSubView 更改为 addSubview

一般来说,您可以使用 Xcode 内置的建议功能,它会向您建议解决此类问题的功能。

关于objective-c - 'UIView' 没有可见的@interface 声明选择器 'addSubView:',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43778730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com