Prestented View Controllerにプロトコルを追加して、Presenting View ControllerとPresented View Controller間の関係を確立しました。自動__weakはエラーを参照していますが、iOS 5用のビルド
The current deployment target does not support automated __weak references
Iが提示ビューコントローラ(DistanceModalViewController.h)で次のようなプロトコルを宣言した:
@protocol DistanceModalViewControllerDelegate <NSObject>
-(void)dismissDistanceModalViewControllerWithData: (id) data;
@end
及びインタフェース(DistanceModalViewController.h)において:
@property (nonatomic, weak) id<DistanceModalViewControllerDelegate> delegate;
で私が合成する実装(DistanceModalViewController.m):
@synthesize delegate;
しかし、上記のエラーが表示されます。私はiPhone 5.1 Simulatorをターゲットにしています。
私は弱いリファレンスを理解できましたが、iOS5では少し混乱しています。私は間違って何をしていますか?
THX
プロジェクトの展開先は何ですか? –
iPhone 5.1シミュレータ – timpone