I'm trying to incorporate some of my iPad UI elements into iPhone 6 plus's landscape mode. To do this, I am checking for a horizontalSizeClass of regular. But whenever I run the app in the iPhone 6 plus simulator, the horizontal size class always registers as compact in landscape mode. (Even the keyboard is a regular iPhone keyboard, not the special 6+ keyboard.) Is this intended behavior? (does this happen on the real device?) How can I test the transition to a regular horizontal size class in the simulator?
iPhone 6 plus simulator size classes in landscape
321 Views Asked by architectpianist At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in AUTOLAYOUT
- UICollectionView cell height/scrollable content behaving strange/incorrect
- Can UIStackView also be used within a UITableViewCell?
- How can I use AutoLayout to place view exactly above other?
- auto layout modify multiplier of constraint programmatically
- iOS 7 - Layout advice
- Aspect fill and Aspect fit swift
- UIVIew from XIB with Autolayout to UItableView Header
- Auto Layout with UIImageView is producing incorrect view layout when an image is shown
- How to remove space of hidden UIImage?
- Using auto layout to arrange views in sequence with one taking whatever space is available
- error when adding constraints to a view I added to UIWindow?
- Constraints error <Will attempt to recover by breaking constraint>
- How would I align an image to the bottom right of the view using Size Classes in Xcode?
- Setting frame for UIButton ignored
- AutoLayout on UITableViewCell subclass breaks after reuse
Related Questions in IOS-SIMULATOR
- iOS launch app with environment variable
- AdMob - Testing Vs. Publishing
- Image.xcassets rendering strangely on simulator
- 'Session Ended' when lauching app from Delphi to iOS Simulator
- Auto Resizing of the tableView Cells is not working with multiline labels in its contentView
- Autolayout and constraints not working, buttons look different in Xcode than they do in IOS SImulator
- Can we push the digital crown using the Apple Watch 2.0 Simulator?
- Coco2dx - Changing To Background Image
- iOS: test app for iPhone in iPad, screen size
- facing this error while building a project in xcode
- Recording App Video Previews with QuickTime
- ios-sim stopped working "NSCFString containsString" error
- Is there a way to show the entire simulator screen?
- Xcode 6.4 "Could not download and install iOS 8.3 simulator"
- Assertion failure in -UIPickerTableView
Related Questions in SIZE-CLASSES
- What is the best practice when making a storyboard for iPhone and iPad?
- Most efficient way to reference 2 different IBOutlets at once (where each one only exists for it's own size class)?
- How would I align an image to the bottom right of the view using Size Classes in Xcode?
- Xcode 6 - create UIImageView with equal heights changing with screen Orientation?
- Different UIs using size classes on iOS
- Adaptive UI on iPhone 6/6+ versus older models
- Size class initially unknown
- iPhone 6 plus simulator size classes in landscape
- Prevent the any any size class from overriding portrait in storyboard
- I am getting more than 50 auto layout constraint errors in xcode 6
- Positioning Labels in Different Devices
- Xcode 6 app won't stop launching in zoom mode
- Xcode 8 device oriented constraints within the same size class
- IOS 7.1, Regular width constraints on universal storyboard ignored if Target device family set to iPad
- Incorrectly rendered UIButton’s image property using asset catalog and size classes
Related Questions in AUTOROTATE
- Auto Rotation iOS 8 Navigation Controller
- iPhone 6 plus simulator size classes in landscape
- UITabBarViewController doesn't rotate - iOS
- Rotates image from gallery
- Swift 3 - Force autorotation
- ios default orientation with autorotation
- Stop automatic Zbar camera rotation
- Prevent View that is accessed from a table view controller from auto rotating
- Main storyboard setting affect rotation function in iOS8
- Autolayout issue
- How to set AViewController (subclass of TabBar and Nav Controller) to portrait only
- UINavigationController setViewControllers autorotation issue
- Autolayout and Device Orientation
- willAnimateRotationToInterfaceOrientation not called on ios6/7
- Use current orientation on push view controller
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Turned out the entire screen was scaled up, including the status bar - the app wasn't supporting the iPhone 6/6+ screen size at all. I followed the instructions on this thread to add a launch storyboard, which allows the app to use the native capabilities of the 6/6+.