There is no other “official” way to determine it. You can determine it using this code:
if (sizeof(void*) == 4) {
NSLog(@"32-bit App");
} else if (sizeof(void*) == 8) {
NSLog(@"64-bit App");
}
Related Contents:
- Passing data between view controllers
- What’s the difference between the atomic and nonatomic attributes?
- Convert between UIImage and Base64 string
- Date Format in Swift
- Convert Swift string to array
- Get Location Updates for iOS App Even when Suspended
- reloadData() of UITableView with Dynamic cell heights causes jumpy scrolling
- NSRange from Swift Range?
- didRegisterForRemoteNotificationsWithDeviceToken not called in ios8, but didRegister…Settings is
- iOS 8.1 Simulator always uses US keyboard layout despite german hardware keyboard
- Why is glReadPixels() failing in this code in iOS 6.0?
- iOS AutoLayout – get frame size width
- Uploading image with AFNetworking 2.0
- Crashlytics: “We’re missing a dSYM to process crashes” [closed]
- iOS 7 — navigationController is setting the contentInset and ContentOffset of my UIScrollView
- why storyboard ui elements not showing on UIViewController in xcode 6?
- How can a web application send push notifications to iOS devices? [closed]
- How to load a xib file in a UIView
- Launch iOS simulator from Xcode and getting a black screen, followed by Xcode hanging and unable to stop tasks
- Store [String] in NSUserDefaults
- Phonegap CDVViewController.h file not found when Archiving for iOS
- no umbrella header found for target, module map will not be generated
- Volunteermatch API Objective C
- Present and dismiss modal view controller
- Should I declare variables in interface or using property in objective-c arc?
- NSMutableURLRequest timeout interval not taken into consideration for POST requests
- Round Top Corners of a UIButton in Swift
- How to specify size for iPhone 6/7 customised edge-to-edge image?
- UICollectionView Set number of columns
- Creating and playing a sound in swift
- Type ‘ViewController’ does not conform to protocol ‘UITableViewDataSource’
- Xcode 10 (iOS 12) does not contain libstdc++6.0.9
- Remove single remote notification from Notification Center
- Xcode 5.1: missing required architecture arm64
- Are there any advantages to using a UITableViewController over a UIViewController that implements tableview delegate and datasource methods? [closed]
- iOS push notification: how to detect if the user tapped on notification when the app is in background?
- Xcode 8 Console Garbage? [duplicate]
- Swift – How to hide back button in navigation item?
- How do I prevent the iPhone screen from dimming or turning off while my application is running?
- UITabBar items jumping on back navigation on iOS 12.1
- How to hide/show tab bar of a view with a navigation bar in iOS?
- Detecting iPhone 6/6+ screen sizes in point values
- How to change the tint color of the clear button on a UITextField
- How to pass data from modal view controller back when dismissed
- Keyboard and cursor show, but I can’t type inside UITextFields and UITextViews
- How to embed a Youtube video into my app?
- Why I get the console warning: [Process] kill() returned unexpected error 1 when I load a WKWebView in iOS13.2?
- iOS 7 – is there a way to disable the swipe back and forward functionality in Safari?
- iOS 10 bug: UICollectionView received layout attributes for a cell with an index path that does not exist
- iOS – Delayed “Touch Down” event for UIButton in UITableViewCell