gpt4 book ai didi

iphone - 比较同一 UIViewController 类的实例或对象

转载 作者:行者123 更新时间:2023-12-01 17:33:13 24 4
gpt4 key购买 nike

我创建了从 UIViewController 类派生的 MasterViewController 的两个实例

_masterViewController = [[MasterViewController alloc] initWithNibName:@"MasterViewController_iPhone" bundle:nil];

// second instance with same class and duplicate nib view
_favItemMasterVC = [[MasterViewController alloc] initWithNibName:@"favMasterViewController_iPhone" bundle:nil];

MasterViewController_iPhone 和 favMasterViewController_iPhone View 都是相同的。
现在我想检查当前选择了哪个 UIViewController(例如:在标签栏上)。
我怎样才能找到两个对象之间的区别?
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
if ([viewController isKindOfClass:[_favItemListMasterVC class]]
{ // it is always called in both cases}

isMemberOfClass://也不工作

如何检查差异?

最佳答案

不确定我是否理解您在做什么,但如果 _favItemListMasterVC 和 _masterViewController 指向添加到 UITabBar 的相同 VC,您可以简单地比较指针来检查它

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {

if (viewController == _favItemListMasterVC)
{
//the visible view controller is _favItemListMasterVC
}

关于iphone - 比较同一 UIViewController 类的实例或对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13415677/

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