init(bytes: UnsafeRawPointer, objCType : UnsafePointer<CChar>)
func getValue (UnsafeMutableRawPointer)
var objCType : UnsafePointer<CChar>
Availability 有効性
Technology
init(_ value: UnsafeRawPointer
,
withObjCType type: UnsafePointer
<CChar
>)
value
A pointer to data to be stored in the new value object. 新しい値オブジェクトの中に格納されることになるデータへのポインタ。
type
The Objective-C type of value
, as provided by the @encode()
compiler directive. Do not hard-code this parameter as a C string.
value
のObjective-C型、@encode()
コンパイラ指令によって提供されるように。このパラメータをC文字列としてハードコードしないでください。
A new value object that contains value
, which is interpreted as being of the Objective-C type type
.
value
を含んでいる新しい値オブジェクト、それはObjective-C型type
のものであると解釈されます。
This method has the same effect as value
and may be deprecated in a future release. You should use value
instead.
このメソッドは、value
と同じ効果を持ちます、そして将来のリリースで非推奨にされるかもしれません。あなたはvalue
を代わりに使うべきです。
init(bytes: UnsafeRawPointer, objCType : UnsafePointer<CChar>)
func getValue (UnsafeMutableRawPointer)
var objCType : UnsafePointer<CChar>
+ valueWithBytes:objCType: