var scriptURL : URL
The script URL. スクリプトURL。
Availability 有効性
Technology
init(url: URL
) throws
url
The script URL. スクリプトURL。
error
A return by-reference error that specifies any error in loading the script. スクリプトのロードにおけるあらゆるエラーを特定する「参照による」エラーを返します。
An instance of an NSUser
subclass or nil
if the file does not appear to match any of the known types.
NSUser
サブクラスのインスタンス、またはファイルが何らかの既知の型に合致するように見えないならばnil
。
The returned object will be of one of the specific sub-classes (NSUser
, NSUser
, and NSUser
), or nil
if the file does not appear to match any of the known types.
返されるオブジェクトは、特定のサブクラス(NSUser
、NSUser
、そしてNSUser
)の1つという性質がある、またはファイルが何らかの既知の型に合致するように見えないならばnil
でしょう。
If invoked from a subclass, the result will be that class or nil
.
サブクラスから発動したならば、結果はそのクラスまたはnil
でしょう。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this API is imported as an initializer and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このAPIはイニシャライザとしてインポートされてthrows
キーワードで印されることで、それが様々な失敗においてエラーをスローすることを指し示します。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
var scriptURL : URL