Khi biên dịch mã này, tôi gặp lỗi "phần tử khởi tạo không phải là hằng số thời gian biên dịch". Bất cứ ai có thể giải thích tại sao?
#import "PreferencesController.h"
@implementation PreferencesController
- (id)init
{
self = [super init];
if (self) {
// Initialization code here.
}
return self;
}
NSImage* imageSegment = [[NSImage alloc] initWithContentsOfFile:@"/User/asd.jpg"];//error here
__attribute__ ((constructor))
.