2016年09月18日
2016年02月26日
XcodeのOrganizerからValidationを実行したとき、"Xcode attemped to locate or generate matching signing assets and failed to do so because of the following issues. Missing iOS Distribution signing identity for xxxxxx Xcode can request one for you."と表示されたときの対処法
XcodeのOrganizerからビルドしたバイナリのValidationを実行したとき、
続きを読む
Xcode attemped to locate or generate matching signing assets and failed to do so because of the following issues.と表示された場合の対処方法。
Missing iOS Distribution signing identity for xxxxxx
Xcode can request one for you.
続きを読む
2015年02月24日
2015年02月13日
iOS7でTabBarを一時的に見えないようにすると、回復したときにTabBarのBackgroudColorが透過されてしまう現象を防ぐ方法
Xcode6でiOS7向けビルドをしたときに、iOS7でアプリを動作させているとき、NavigationControllerで次の画面をpushして遷移させるとき、
これを防ぐための方法。
続きを読む
NextViewController.hidesBottomBarWhenPushed = YES;と記述してTabBarを一時的に隠すと、popして画面を戻ったときに TabBarが透過属性となり、下層のViewが見えてしまう。
これを防ぐための方法。
続きを読む