gpt4 book ai didi

ios - 使用 setSelectedIndex : method in UITabBarController 时遇到问题

转载 作者:行者123 更新时间:2023-11-28 19:06:56 37 4
gpt4 key购买 nike

我正在使用带有 Controller 的 TabBar View 。

在 .h 中:@interface TabsViewController : UITabBarController

在 .m 中:

#import "TabsViewController.h"

@interface TabsViewController () < UITabBarDelegate, UITabBarControllerDelegate >

@end

@implementation TabsViewController

- (void)viewDidLoad {
TabsViewController.setSelectedIndex:1;
}

但最后一行给出了这个错误:

"Property 'setSelectedIndex' not found on object of type 'TabsViewController'"

为什么?谢谢!

最佳答案

您正在以错误的方式访问 selectedIndex 属性。我认为您已经创建了自己的方式在 Objective-c 中做事。实例变量中的 SelectedIndex,因此您需要相同的设置/获取它。

重写你的 viewDidLoad 如下...

- (void)viewDidLoad 
{
self.selectedIndex = 1; // or [self setSelectedIndex:1]
}

关于ios - 使用 setSelectedIndex : method in UITabBarController 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19493735/

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