Posts by DaSilva • 321 points
7 posts
-
2
votes1
answer289
viewsA: How to collect keyboard when cancel search button is clicked?
Use the Searchbar delegate to add the cancel button when the user starts typing text: - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar{ [_seachBar resignFirstResponder]; }…
-
1
votes1
answer547
viewsA: How to create the certificates and provisioning profile correctly for use of Push Notification?
The launch of iOS8 brought some changes to the way devices receive notifications. I do not know if the problem you are referring to is about that aspect or even about the certificate created. So I…
-
1
votes2
answers6761
viewsA: Mask for Uitextfield
You have to implement Textfield’s "shouldChangeCharactersInRange" method. Within the method applies the validation of the text you want whenever there is a change in the text. A great solution I…
-
2
votes2
answers83
viewsA: How to use/maintain obsolete methods for older versions of iOS?
Checks which version is to be executed, and applies the code for each of the situations if ([[[UIDevice currentDevice] systemVersion] floatValue] < 8.0) { //Menor que iOS8 }else{ //Maior ou igual…
-
0
votes2
answers93
viewsA: Adapting iOS 7 Code to iOS 8
If you want to submit an application in the store you are required to support Apple’s SDK8 and consecutively the new iOS8. You shouldn’t have so many problems starting, but there are certain…
-
8
votes1
answer811
viewsA: How do I implement an Apple APNS push notification service?
You basically have to implement that system on your server. The notification process is done in the following steps: At the beginning of the application you ask the "Apple servers" to register the…
-
2
votes1
answer94
viewsA: Error running Xcode 6 an app created in Xcode 5
Some details to help you better understand the process of Xcode/SDK/IOS. With the Xcode 6, you started creating applications with SDK8. However, SDK and minimum target of the application are…