> On 14 Apr 2015, at 21:40, Alex Zavatone <z...@mac.com> wrote:
> 
> So, just to be clear, when you click on your Target iOS app and select 
> General in the main window and scroll down to Deployment Info, all the little 
> check boxes next to Device Orientation are checked?  Including the one that 
> says Upside Down?
> 

Only the first two: Portrait and Upside Down.

> 
> 
> On Apr 14, 2015, at 10:35 AM, Gerriet M. Denkmann wrote:
> 
>> 
>>> On 14 Apr 2015, at 21:21, Jens Alfke <j...@mooseyard.com> wrote:
>>> 
>>> 
>>>> On Apr 14, 2015, at 4:57 AM, Roland King <r...@rols.org> wrote:
>>>> 
>>>> Read the manual. 
>> 
>> Excellent advice. I have been following this since hours.
>> 
>> As to supportedInterfaceOrientations:
>> All my subclasses of UIViewController have this implemented - none gets ever 
>> called.
>> 
>> - (NSUInteger)supportedInterfaceOrientations
>> {
>>      UIInterfaceOrientationMask mask = UI_USER_INTERFACE_IDIOM() == 
>> UIUserInterfaceIdiomPhone ? 
>>                                                              
>> UIInterfaceOrientationMaskPortrait | 
>> UIInterfaceOrientationMaskPortraitUpsideDown :
>>                                                              
>> UIInterfaceOrientationMaskAll;
>>      NSLog(@“%s %#lx”,__FUNCTION__,mask); ← never seen this
>>      return mask;
>> }
>> 
>>> 
>> 
>>> +1.
>>> 
>>> In addition to what Roland said, it’s also staring you right in the face in 
>>> the General tab of the target settings as a set of friendly checkboxes.
>> 
>> When I click on Target → General I see under “Deployment Info - Device 
>> Orientation” 4 checkboxes, which look friendly enough. Only the first two 
>> (Portrait and Upside Down) are selected.
>> 
>> But iPad works in all 4 orientations. Seams that the Info.plist overrides 
>> the friendly checkboxes.
>> And iPhone works only in Portrait - NOT upside down.
>> 
>> Kind regards,
>> 
>> Gerriet.
>> 
>> 
>> _______________________________________________
>> 
>> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>> 
>> Please do not post admin requests or moderator comments to the list.
>> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>> 
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/cocoa-dev/zav%40mac.com
>> 
>> This email sent to z...@mac.com
> 


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to