0
我一直在嘗試解決此問題,但無法找到解決方案。體系結構x86_64的未定義符號:_MSImageSelectionIsDoneNotification
我定義
extern NSString * const MSImageSelectionIsDoneNotification;
在其頭部
一個MSCropImageView和
NSString * const MSImageSelectionIsDoneNotification = @"MSApp.MSImageSelectionIsDoneNotification";
在MSCropImageView.m
但是當我打電話
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(selectionIsDone:) name:MSImageSelectionIsDoneNotification object:self.imageView];
從另一個文件我收到了架構x86_64的錯誤未定義符號。我包含了定義符號的頭文件。
Tnx,解決了問題:) – 2013-03-21 09:57:31