リリースまでに参考になったサイト
http://dev.classmethod.jp/smartphone/iphone/ios-app-how-to-release/
非常に親切にまとめてありました。
が。。。親切すぎるので、少しでも違うとハマってしまいました。。。
エラーその1
Code Sign error: Provisioning profile does not match bundle identifier:
The provisioning profile specified in your build settings (“simple0114”)
has an AppID of “simplerimawari” which does not match your bundle identifier
“simplerimawariInterests”.
表示されたエラーは単純にAppIDとあなたのビルド環境のidentifierが異なりますよ
って出ていましたが、どこを変更すれば良いのかわからない。
infoタブ
Custom iOS Target Properties
Bundle identifier
の値が
(プロジェクト名).${PRODUCT_NAME:rfc1034identifier}
ってなっているので、
Generalタブ
Identitiy
Bundle Identifier
の値を変えても、環境変数までは変えられないので
一致しないことに気づきませんでした。。。。
ワーニングその1
CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.0
Warning出てましたが、とりあえず動くので軽くするーしていました。
iOS7で仕様が変わったものに対する対応が必要です。
http://yutorisolve.doorblog.jp/archives/20148803.html
より
dismissModalViewControllerAnimatedがiOS 6で使えない
[_baseViewController dismissModalViewControllerAnimated:YES];
以下の関数で置き換えます。
[_baseViewController dismissViewControllerAnimated:YES completion:nil];
0 件のコメント:
コメントを投稿