class var local: TimeZone
class var system: TimeZone
class func resetSystemTimeZone ()
system
property.
system
プロパティにキャッシュされた何らかのタイムゾーン値を取り除きます。
Availability 有効性
Technology
class var `default`: TimeZone
{ get set }
If no default
time zone has been set, the current system time zone is used. If the current system time zone cannot be determined, the GMT time zone is used instead.
default
タイムゾーンが設定されていないならば、現在のシステムタイムゾーンが使われます。現在のシステムタイムゾーンが決定されることができないならば、GMTタイムゾーンが代わりに使われます。
The default
time zone is used by the app for date and time operations. You can set it to cause the app to run as if it were in a different time zone. Setting the default
property clears any value that was previously set.
default
タイムゾーンは、そのアプリによって日付と時刻演算に使われます。あなたはそれを設定することで、そのアプリをまるでそれが異なるタイムゾーンの中にあるかのように動作させられます。default
プロパティを設定することは、それが以前に設定された何らかの値をきれいに取り除きます。
If you access the default
class property, assign its value to a variable, and set a new default
time zone, the object stored in the variable doesn't update to reflect the new default
time zone. Contrast this behavior with that of the local
class property, which returns a proxy object that always reflects the current system time zone.
あなたがdefault
クラスプロパティにアクセスして、それの値を変数に割り当てて、そして新しいdefault
タイムゾーンに設定するならば、変数の中に格納されたオブジェクトは新しいdefault
タイムゾーンを反映するように更新しません。この挙動をlocal
クラスプロパティと比較してください、それはプロキシオブジェクトを返します、それは常に現在のシステムタイムゾーンを反映します。
class var local: TimeZone
class var system: TimeZone
class func resetSystemTimeZone ()
system
property.
system
プロパティにキャッシュされた何らかのタイムゾーン値を取り除きます。