CFBridgingRelease
Moves a non-Objective-C pointer to Objective-C and also transfers ownership to ARC.
非Objective-CポインタをObjective-Cに移動します、そしてまた所有権をARCに移します。
Availability 有効性
Technology
func CFBridgingRetain(_ X: Any?) -> CFTypeRef
?
You use this function to cast an Objective-C object as Core Foundation-style object and take ownership of the object so that you can manage its lifetime. You are responsible for subsequently releasing the object, as illustrated in this example: あなたは、この関数を使ってObjective-CオブジェクトをCore Foundation形式のオブジェクトとしてキャストして、そしてオブジェクトの所有権を取ります、それであなたはそれのライフタイムを管理できます。あなたは、その後のオブジェクトの解除について責任があります、この例で図解されるように:
CFBridgingRelease