1
我正在使用下面的代碼來檢查視圖控制器。比較類是給出不正確的輸出
NSLog(@"addProductClicked 1===%@", self.class);
NSLog(@"addProductClicked 2===%@", [CategoriesViewController class]);
if ([self.class isKindOfClass:[CategoriesViewController class]]) {
NSLog(@"you go it right");
} else {
NSLog(@"you go it wrong");
}
我得到的輸出如下。
addProductClicked 1===CategoriesViewController
addProductClicked 2===CategoriesViewController
you go it wrong
任何想法是什麼問題?
只是爲了更新,下面就是我定義我的視圖控制器...
@interface CategoriesViewController : GlobalViewController {
現在GlobalViewController
我有方法,其中,我上面的檢查......