Pergunta

Is it possible for me to use XCode 5 to build app with the old UI (non-iOS 7 style)?

My App required Audio Mic for input, when run in iOS 7, it has to ask permission for the Audio input to use.

if([[AVAudioSession sharedInstance] respondsToSelector:@selector(requestRecordPermission:)]){
    [[AVAudioSession sharedInstance] requestRecordPermission:^(BOOL granted) {
        if (granted) {
            NSLog(@"Enabled Mic");
        }
        else {
            NSLog(@"Disabled Mic");
        }
    }];
}

This API require iOS 7, So I need to use XCode 5 to build the app. The problem is I need to maintain the old UI look (e.g. black tabbar, buttons), which is reviewed by our client. Is it possible to do that using XCode 5 ?

Foi útil?

Solução

No, you can't use Xcode 5 for non-iOS 7 development. Apple wan't us to redesign our apps for iOS 7 and any new app on the App Store will be rejected (I think).

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top