8 lines
149 B
Objective-C
8 lines
149 B
Objective-C
#import <AppKit/AppKit.h>
|
|
@implementation NSObject (MavericksCompat)
|
|
- (instancetype)initWithCoder:(NSCoder *)coder
|
|
{
|
|
return [self init];
|
|
}
|
|
@end
|