Menu
  • HOME
  • TAGS

When Build iOS APP by TestflightAPP.com some features are missing [closed]

ios,video,ipod,testflight,video-recording

Thats weird, because basically test flight does nothing with your IPA you can just upload and distribute using test flight . But couple of things need to be checked : Make sure you are uploading latest .ipa file .(Just remove all the ipa files from the organiser and create new...

orientation in ios ipad

ios,iphone,ipod

You should add UISupportedInterfaceOrientation key with list of orientations (you can make it with xCode UI in the target's General settings). Also, if you need different orientations on different view controllers, you can override method - (NSUInteger)supportedInterfaceOrientations And you should read this adaptive interface, because in ios 8, orientation changing...

Encode video for ipod classic

video,ffmpeg,ipod

You will probably have to re-encode because the iPod Classic can handle up to 640x480 according to the specs you provided, but your video is 1280x720. Video can be H.264, Baseline Profile, Level 3.0: ffmpeg -i in.mp4 -vcodec libx264 -crf 23 -preset fast -profile:v baseline \ -level 3 -refs 6...

how to change ringer mode to (Silent or Vibrate) mode

ios,iphone,ipad,ipod

You could do this by using private API but your app will be rejected by apple AppStore as per apple policy which doesn't allow private API ,so then if you still wanna do it then you could go for Cydia Store to upload which is a store for rooted(jail broken)...