Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ありがとう、
これらのキーワードは、非目的 c ポインターの処理方法を ARC システムに伝えるために使用されます。本質的に、__bridge を使用する場合、変換されたポインターの所有権を扱わないように ARC に指示していることになります。関数。一方、__bridge_transfer は所有権を ARC に転送し、ARC はオブジェクトへの参照がゼロに達すると、標準のリリース メカニズムを介して目的 c (したがって元の非目的 c) オブジェクトを解放します。