使用宏从单元继承不同的ios版本

时间:2014-05-29 09:19:48

标签: ios macros

如上所述,我希望从iOS平台版本继承不同的超级单元格,我写了这个

   #define IOS_7    ([UIDevice currentDevice].systemVersion.floatValue>=7.0?YES:NO)
   #if IOS_7
   #define SuperCell  UITableViewCell
   #else
   #define SuperCell  EditTableViewCell
   #endif
   @interface AlbumCell : SuperCell <UIGestureRecognizerDelegate>

但是它给出了一个错误,那么我应该怎样做才能使这个工作?

0 个答案:

没有答案