gpt4 book ai didi

objective-c - 以编程方式更改选项卡栏

转载 作者:搜寻专家 更新时间:2023-10-30 19:52:29 25 4
gpt4 key购买 nike

我正在尝试在单击按钮时更改选项卡 View 。我有这段代码:

- (IBAction)startScratch:(id)sender {
_mainTabBar.tabBarController.selectedIndex = 1;
//Error: ^ Property tabBarController not found on type "NSTabView*"
}

.h 文件有这些代码行:

@property (weak) IBOutlet NSTabView *mainTabBar;
- (IBAction)startScratch:(id)sender;

我假设我应该用一些东西替换 _mainTabBar,但如果是这样,怎么办?

最佳答案

如@H2CO3 所述,NSTabView 中没有tabBarController 属性。如果你阅读 the documentation ,您会注意到 NSTabView 提供了一些选择方法,包括 -selectTabViewItemAtIndex: ,你可以这样使用:

- (IBAction)startScratch:(id)sender {
[_mainTabBar selectTabViewItemAtIndex:1];
}

请注意,第一个选项卡位于索引 0 处。

关于objective-c - 以编程方式更改选项卡栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17102077/

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