var description: String
var customPlaygroundQuickLook : PlaygroundQuickLook
Availability 有効性
Technology
func description(with locale: Any?) -> String
locale
An NSLocale
object.
あるNSLocale
オブジェクト。
If you pass nil
, NSDate
formats the date in the same way as the description
property.
あなたがnil
を渡すならば、NSDate
は、description
プロパティと同じ方法で日付を書式設定します。
In OS X v10.4 and earlier, this parameter was an NSDictionary
object. If you pass in an NSDictionary
object in OS X v10.5, NSDate
uses the default user locale—the same as if you passed in [NSLocale current
OS X 10.4以前では、このパラメータはNSDictionary
オブジェクトでした。あなたがNSDictionary
オブジェクトをOS X 10.5において渡すならば、NSDate
は省略時のユーザロケールを使います — あなたが[NSLocale current
を渡した場合と同じ。
A string representation of the receiver, using the given locale, or if the locale argument is nil
, in the international format YYYY-MM-DD HH:
, where ±HHMM
represents the time zone offset in hours and minutes from UTC (for example, “2001-03-24 10:
”)
レシーバの文字列表現、与えられたロケールを使います、またはロケール引数がnil
ならば、国際書式YYYY-MM-DD HH:
において、そこで±HHMM
はUTCからのタイムゾーンオフセットを時間と分で表します(例えば、 “2001-03-24 10:
”)。
In OS X v10.4 and earlier, locale
is an NSDictionary
object containing locale data. To use the user's preferences, you can use [[NSUser
OS X 10.4以前では、locale
はロケールデータを含んでいるNSDictionary
オブジェクトです。ユーザの環境設定を使うには、あなたは[[NSUser
を使用できます。
var description: String
var customPlaygroundQuickLook : PlaygroundQuickLook