Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个选项卡视图,其中添加了 3 个选项卡视图项。在每个选项卡中,我都有要自动填充数据的字段。单击选项卡时会自动调用哪些方法。请帮助我...
NSTabView允许您指定一个对象作为其委托。此委托对象应该是符合NSTabViewDelegate协议的类的实例。该协议声明,除其他方法外,
NSTabView
NSTabViewDelegate
-tabView:willSelectTabViewItem:
-tabView:didSelectTabViewItem:
您可能想要实现-tabView:willSelectTabViewItem:,以便在选择该选项卡项之前填充字段。