iOS5, StoryBoards, ARC: Weird categories issue
问题 I've created a file with sql methods and now this file is really large. I'd like to split it for best practice and implementation simplicity. So, categories. I've created in xCode new objective-c categories file -> DBAccess+Generals.h (.m). .h: #import "DBAccess.h" @interface DBAccess (Generals) -(void)newMeth; @end .m #import "DBAccess+Generals.h" #import "DBAccess.h" @implementation DBAccess (Generals) -(void)newMeth { NSLog(@"New Meth"); } @end In DBAccess.h #import <Foundation/Foundation