Soru & Cevap

Portrait Uygulamada Videoyu Portrait ve Landscape Izletmek ...

07.03.2014 - 11:06

Merhaba

Uygulama genel olarak yalnizca portrait mod olucak ama videoyu jem portrait hemde lanscape olarak caldirabilmek istiyorum.

Bunun icin ios6 ve ios7 icin tavsiyeleriniz nelerdir?

1 Görüntülenme

1 Cevap

Sitedeki sorulara cevap verebilmek için giriş yapın ya da üye olun.

picture-4271-1380316299.jpg
MuratSisman
16.04.2014 - 06:44

Video view controller'a şu kodları ekleyebilirsin

[code]

- (BOOL)shouldAutorotate {
    return NO;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
 return UIInterfaceOrientationLandscapeLeft;
}

- (NSUInteger)supportedInterfaceOrientations { 
  return UIInterfaceOrientationMaskAll; 
}

[/code]