如何让按钮更改 Objective C Cocoa 应用程序中的选项卡
How to make a button change a tab in Objective C Cocoa applications
在 this tutorial 中,我学习了如何使用 XCode 在 OSX Cocoa 应用程序中使用 Objective C 制作按钮 say hello world 7。
现在如何让它调用我的选项卡视图并以编程方式切换选项卡?
看,我正在使用隐藏的选项卡实现我的界面,当点击一个按钮时,它会更改选项卡。这是我正在编写的安装程序应用程序。
Create an outlet 在 AppDelegate 中并将其连接到 tabview。
Create an action 在 AppDelegate 中并将按钮连接到此操作。示例(tabView为outlet):
- (IBAction)selectMiddleTabViewItem:(id)sender {
[self.tabView selectTabViewItemAtIndex:1];
}
在 this tutorial 中,我学习了如何使用 XCode 在 OSX Cocoa 应用程序中使用 Objective C 制作按钮 say hello world 7。
现在如何让它调用我的选项卡视图并以编程方式切换选项卡?
看,我正在使用隐藏的选项卡实现我的界面,当点击一个按钮时,它会更改选项卡。这是我正在编写的安装程序应用程序。
Create an outlet 在 AppDelegate 中并将其连接到 tabview。
Create an action 在 AppDelegate 中并将按钮连接到此操作。示例(tabView为outlet):
- (IBAction)selectMiddleTabViewItem:(id)sender {
[self.tabView selectTabViewItemAtIndex:1];
}