Questions tagged as 'ios'

2
answers

iOS apps made in Phonegap can be compiled in Windows?

The Phonegap builder serves to compile the applications for you, but on iOS it makes an error when compiling. What does it take to compile on iOS using Phonegap builder? What kind of key do I need to compile it? I found this phonegap link: l...
asked by 27.05.2015 / 18:33
2
answers

Testing asynchronous requests

How can I make asynchronous requests in iOS TestCases? Example: -(void)test { UserModel* user = [UserModel sharedInstance]; [user requestUserInformationWithCompletion:^(NSError* error, NSDictionary* info){ if(error) {...
asked by 11.02.2014 / 16:55
1
answer

Load WebView in Objective c

I set up a builder interface to load a webview, with .h, .m, and .xib. In a side menu, when I click on an option, I need to call this webview. Running the application, clicking this option returns the error "Thread 1: SIGABRT signal" in main.m....
asked by 04.05.2017 / 14:19
1
answer

How to access PHP webservice securely from an Objective-C / iOS application?

I'm making an application where I need to securely send user data to the Web Service using PHP. For this, I'm researching about security for iOS. What is the recommended method and what are the points that I should be concerned about? Plea...
asked by 30.03.2015 / 03:17
2
answers

Change in css only in iOS

I need to make a css change only on iOS, I've used if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {}  But it did not work. The code I need to change is this one. .sdn-music-player>.yt-wrap>iframe { left: -22px;...
asked by 26.08.2015 / 16:55
1
answer

UITableView with custom and scalable UITableViewCell

I'm creating a chat for IOs in Objective C, and I use custom UItableViewCell. My difficulty is to resize the Cell as the text in the chat, like the image: Andthissecondscreen,ishowitis,withoneconversation,overlappingtheother,withouthavingali...
asked by 11.01.2016 / 16:26
1
answer

How do telegram and facebook messenger clean notifications on devices? [closed]

When you receive a notification via Telegram or Facebook Messenger on multiple devices, if you read the message in one of them in others the notification is removed. How does this happen? PS: This happens even if the app is not running on...
asked by 22.07.2016 / 17:56
0
answers

Error returning address from CLGeocorder [closed]

I was developing an app using CLGeocoder, and suddenly it stopped working without me making any changes to the code, and started to return the following error.    ERROR /SourceCache/ProtocolBuffer/ProtocolBuffer-187.4/Runtime/PBRequester.m:82...
asked by 23.05.2014 / 18:34
3
answers

Rotation on certain screens

How do I set only a UIViewController to be enabled in rotation? The scenario is as follows:    I have 5 screens, and in all of them I should only enable the mode   portrait. But I have a sixth screen, and it must be enabled   the la...
asked by 16.12.2014 / 17:27
4
answers

Format currency in a UITextField

I need to create a UITextField to add money values. But I need the user to see the value being added in the UITextField in the order the user types. Example: User types 1 - in UITextField 0.01 appears User types 5 - UITextField appears 0,15 User...
asked by 06.03.2014 / 01:42