I have recently began working on app development more specifically games. I am using Xcode 7 beta 3 default iPhone 6 simulator. In my game I have a screen to enter the user's name setting up an action through interface builder 'primaryActionTriggered' in which I would update the high score file and dismiss the view. It all worked perfectly in the simulator but when I put it on my iPhone 6 iOS 8.0.1 the action did not trigger. Has something changed in iOS 9 to change the way 'UITextField' works, and can you please provide a working example which I could see. The simulator was running iOS 9
'UITextField' XCode 7
1.2k Views Asked by Sasha Kiselev 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 SWIFT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Swift code with multiple NSDateFormatter - optimization
- How do I add multiple in app purchases in Swift Spritekit?
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Change background of an Accessory View in a UITableViewCell
- fade in an bounce animation subview
- Create a PFObject and PFRelation after PFUser Sign Up
- Swift 2 - Pattern matching in "if"
- How do I give inputs through NSURL
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- Compiler complains that 'Expression resolved to unused function' when removing index in array of functions
- Cast from 'Int?' to unrelated type 'NSNumber' always fails
Related Questions in UITEXTFIELD
- UITextField append / between dates while enforcing character limit
- Currency in UITextField
- Swift - Default behavior for UITextFields
- Objective c keyboard opens unwillingly
- UIAlertController rounded rect textfield
- Having trouble with currency
- cellForRowAtIndexPath method is not called when using autocomplete textfield
- Format currency with UITextField
- Custom class that inherits from UITextField does not work (with custom init) in Swift
- UITextField Caret stops moving around when too large
- UITextField reference from rightView
- touchesBegan not getting called
- iOS not able to update the set text in UITextField
- UITextfield disappears when touch it
- Check row selected for textfield in tableview cell using Swift?
Related Questions in XCODE7-BETA3
- Mapping array works in playground but not in Xcode project
- Xcode 7 Err "Editor placeholder in source code"
- iOS - Auto Layout vs Different storyboards for different screen sizes
- Send email In-game using sprite kit in xcode 7 beta3?
- fatal error after reloadData UITableView in other class
- ld: framework not found "CustomFrameworkName"
- Issue loading a url in WKWebView using Xcode 7 beta3
- cannot set UIEdgeInsets of table View in swift 2.0 xcode 7 beta
- Apple Watch OS2 beta 3 - App stuck spinning on physical watch
- Autolayout issue after updating to Swift 2.0
- Unable to import GoogleMaps into framework in Xcode 7
- Apple watch app stuck loading (shows a spinning wheel) on real device
- How to use xcodebuild in Xcode 7 with a watch extension
- How to set a tap for imageview array in Swift/Xcode
- Building a Swift Framework with Xcode 7 (Beta 3) to use as an Embedded Binary
Related Questions in IOS-9-BETA3
- requestImageDataForAsset with video PHAsset returns with imageData pointing a photo
- Any example code for NSUserActivity in SearchApi feature?
- App fatal error with iOS9 public beta 3?
- In App Purchase Issue in iOS 9
- Calling "sysctlbyname(...)" with "hw.machine" flag in iOS9
- Parse SDK issues with the new iOS 9.3 beta
- watchOS 2 Beta 3 unable to run app from Xcode Beta 3 - shows infinite loading
- iOS 9 ABPeoplePickerNavigationController doesnot show cancel and groups buttons on navigation bar
- CTCallCenter callEventHandler is never called
- EXC_BAD_ACCESS error when using an NSURLSession NSURLSessionDownloadTask on some hardware in iOS 9
- "BBImage" is not a subclass of NSManagedObject in ios9
- 'UITextField' XCode 7
- Can we use NSAppTransportSecurity in XCode 6?
- iOS 9 New Launch Images and Icons Sizes, has anyone found the new sizes for the upcoming devices yet?
- iOS 9 beta : didReceiveAuthenticationChallenge method gets called for every Https site request in WkWebview but not in iOS 8
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?
You have already explained the reason for the problem perfectly! The whole concept of a "primary action" is new in iOS 9. You cannot use it in an earlier system.
So, if you need compatibility with iOS 8, just pretend that the "primary action" trigger doesn't exist; hook your text field up with some other control event (such as Editing Changed).