我正在尝试为iOS7控制中心实施一项调整,其中包括添加其他部分。所以我想创建SBControlCenterSectionViewController
的子类但我得到链接器错误
Undefined symbols for architecture armv7s:
"_OBJC_METACLASS_$_SBControlCenterSectionViewController", referenced from:
"_OBJC_CLASS_$_SBControlCenterSectionViewController", referenced from:
据我所知,这是因为我没有SB私有框架(只有头文件)的实现,但有没有办法制作SBControlCenterSectionViewController的子类?
答案 0 :(得分:0)
%subclass MySubclass: SBControlCenterSectionViewController
- (void)anExistingMethodInSuperclass
{
//...
}
%new
- (void)aNewMethodInSubclass
{
//...
}
%end