Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションのカスタムエラードメインを作成したいと思います。NSInteger取得できる可能性のあるすべてのエラーコードをカバーする列挙型があります。私の質問は、これらをカスタムドメインに関連付ける方法です。ありがとう。
NSInteger
ドメインは、それを命名する単なる文字列です。どこにでも登録する必要はありません。
エラーコードを含むヘッダーに、次の行を追加します。
extern NSString *const MyErrorDomain;
そして、実装ファイルでは:
NSString *const MyErrorDomain = @"MyErrorDomain";
次に、その名前付き定数をエラードメインに使用できます。終わり!