<エラー内容>
ShareViewController.mのSemantic Issue
@synthesize of “weak” property is only allowed in ARC or GC mode
<原因>
ARC 又は GC モードのみに「プロパティ:weak」の使用が許可されている…?
<解決方法>
エラーを出したファイル「***.m」が参照している「***.h」に記述された”weak”を片っ端から “unsafe_unretained” に置き換える。
ShareViewController.mのSemantic Issue
@synthesize of “weak” property is only allowed in ARC or GC mode
<原因>
ARC 又は GC モードのみに「プロパティ:weak」の使用が許可されている…?
<解決方法>
エラーを出したファイル「***.m」が参照している「***.h」に記述された”weak”を片っ端から “unsafe_unretained” に置き換える。

コメントをかく