1

101brainexercises という名前の iOS アプリを開発しています。プロジェクト ビルド設定の製品名は 101BrainExercises です。ただし、BuildIdentifier の名前は com.neurotrain.-01BrainExercises です。

製品名を BrainExercises101 とすると、com.neurotrain.BrainExercises101 のように正常に動作します。

Xcode 4.5.2 と IOS6 SDK を使用しています

- ありがとう。

4

1 に答える 1

2

プロジェクト名は、RFC 1035 (DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION) によって制限されています。具体的には、次のとおりです。

<domain> ::= <subdomain> | " "
<subdomain> ::= <label> | <subdomain> "." <label>
<label> ::= <letter> [ [ <ldh-str> ] <let-dig> ]
<ldh-str> ::= <let-dig-hyp> | <let-dig-hyp> <ldh-str>
<let-dig-hyp> ::= <let-dig> | "-"
<let-dig> ::= <letter> | <digit>
<letter> ::= any one of the 52 alphabetic characters A through Z in
upper case and a through z in lower case
<digit> ::= any one of the ten digits 0 through 9

つまり、「ラベル」部分は文字で始まる必要があります。

于 2013-02-11T10:16:04.033 に答える