Posts by Celso Melero • 77 points
9 posts
-
0
votes1
answer93
viewsQ: Auto layout does not work in Xcode 7
I opened my project which was in Xcode 6 in Xcode 7 and the auto layout (for different devices) is not working in the simulator. Below I put a simulator image on iphone 4s and another on iphone 6.…
-
0
votes3
answers1300
viewsA: Error 400 when calling a. net service in the iOS app - How to resolve?
I managed to fix it. The problem was in the composition of the Soap message. Replace the two double quotes ("") with a single quote ('). - (BOOL)validateCode:(NSString *)code { NSString *soapMessage…
-
1
votes3
answers1300
viewsQ: Error 400 when calling a. net service in the iOS app - How to resolve?
I need to access a webservice of my app. I took an example in stackoverflow to access the service http://www.cgsapi.com/CGSWebService.asmx. Below is the source code to access the service. The…
-
2
votes1
answer59
viewsQ: App features strange scroll on iPhone 6
My application started to show a smaller screen when I run on iphone 6. Anyone has any suggestions? Follow the screen: Grateful…
-
0
votes1
answer201
viewsA: Generate a PDF based on an HTML
I recommend using the code suggested by Otávio in the comment. I tested and the code is very simple and practical. github.com/iclems/iOS-htmltopdf…
-
3
votes1
answer47
viewsQ: Nslocalizedstring does not return matching text
Personal I’m using the function NSLocalizedString in an iOS app but this is not returning the related text I put in a file Localization.strings that has the content below. Someone could help me to…
-
1
votes1
answer201
viewsQ: Generate a PDF based on an HTML
I need to generate a PDF in an IOS app based on an HTML. I have the HTML code generated in another language and need to rewrite the code for IOS. Does anyone have any suggestions as to which…
-
0
votes1
answer38
viewsQ: uitextfield - Position cursor during editing
I am doing a treatment for Uitextfied editing to format text as decimal with decimal separators and thousands. My question is how to always position the cursor in the right corner of the text field?…
-
0
votes1
answer265
viewsQ: Xcode function library (Objective-C)
I need to create a function library in Objective-C. The idea is to create something more or less like the function library Math. h. That is, it is not necessary to instantiate the class to use the…