3

为什么继承必须从 NSObject 开始,然后在另一个类中使用继承?

想知道为什么我有一个来自 UIViewController 的子类“FatherClass”。所以我想创建一个继承FatherClass(ChildClass:FatherClass)。

我不能这样做,我得到一个错误日志。我在这里和 Google 搜索的所有示例都以 NSObject 作为父亲开头。

所以我的问题必须是这样吗?还是我在某个地方错了。

这是错误日志

#0  0x33d6c6f8 in CFStringGetCharacters ()
CoreFoundation`CFStringGetCharacters:
0x33d6c6f8:  push.w {r8, r10}

谢谢

在这里编辑代码

父类.h

@class ChildClass;
@interface FatherClass : UIViewController <UITabBarControllerDelegate, UINavigationBarDelegate, UIPopoverControllerDelegate, MKMapViewDelegate, MKAnnotation>
{
     //Some variables
}
@property (nonatomic, strong) ChildClass   *sidebar_table_controller;

-(void) show_modal: (id) sender; // Thats the Method i want to call
@end

父类.m

#import "FatherClass.h"
#import "ChildClass.h"
@interface FatherClass ()

@end

@implementation FatherClass

@synthesize sidebar_table_controller;

// All inits here... DidiLoad, DidUnload, etc..

-(void) show_modal: (id) sender // Thats the Method!!!
{

      // All initiate ChildClass an then.. present modal

      [self presentModalViewController:self.sidebar_table_controller animated:YES];

      NSLog(@"Clicked ?...%@", sender);
}
@end

现在的孩子

子类.h

@interface ChildClass : FatherClass <UINavigationControllerDelegate, UITableViewDataSource, UITableViewDelegate>
@end

子类.m

#import "ChildClass.h"

@interface ChildClass ()

@end

@implementation ChildClass
 // All inits here... DidiLoad, DidUnload, etc..

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
     // Here i want to call Father Method
     [FatherClass show_modal:indexPath];
}

@end

当我将 ChildClass : UIViewController 更改为 ChildClass : FatherClass 我的应用程序崩溃。

4

2 回答 2

1

您可以创建每种类型的对象:具有 NSObject 父亲的对象或没有任何父亲的新对象。那么问题来了:为什么要用NSObject作为父亲呢?因为它实现了创建健壮类所需的所有方法,例如 init、dealloc 等等。

因此,您可以创建自己的层次结构,但您必须重新发明轮子,重写每个方法来管理对象。

于 2012-04-24T15:44:56.220 回答
0

您始终可以使用 Self 调用父类属性和函数。所以你的代码是

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
     // Here i want to call Father Method
     [Self show_modal:indexPath]; }

而且您在展示之前从未分配过财产

@property (nonatomic, strong) ChildClass   *sidebar_table_controller;

因此,像上面一样评估属性并调用函数。

于 2016-01-18T09:31:48.390 回答