Tagged Questions
4
votes
1answer
69 views
What format is this string in? [closed]
I'm trying to figure out what data an iPhone game app is sending. It uses the GKTurnBasedMatch framework.
I've captured some of its packets and I found a promising XML message with this string as the ...
0
votes
2answers
71 views
Issue formatting string in xcode iphone
I'm a noob to iphone development (2nd day using xcode) and I am having trouble making a dynamic text for a label. My string:
dealerspremiumLabel.text= [NSString stringWithFormat:@"%d%% (%@%d)", ...
0
votes
0answers
484 views
Get the phone number format for the current Region Format Setting in iPhone?
An NSDataDetector is used to detect a phone number as following:
NSError *error = NULL;
NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypePhoneNumber ...
0
votes
0answers
212 views
I want iLBC format, but can only seem to record audio in IMA4 format
How do I record audio in iLBC format?
I got some help from Question #1010343, and implemented this code:
NSMutableDictionary *recordSetting = [[NSMutableDictionary alloc] initWithCapacity:10]; ...
0
votes
2answers
624 views
Available Video Recording formats for iOS
The functionality is to record a video from iPhone and upload it to server, then it should be synced with android device, and should be playable over there. From google search I came to know that ...
0
votes
1answer
58 views
Format UITextfield from UIPicker that has 5 components?
I have 1 UIPicker with 5 components, all numbers 1-9. I just want all 5 components to show up in the UITextfield. I have a feeling there is a much shorter code for this than what I have:
NSString ...
0
votes
1answer
360 views
iPhone phone number format NSFormatter
I'm copying phone number from iPhone address book to a text field. In text field it is showing as 1 (234) 567-8901. I want format it to 12345678901. help and tips appreciated.
0
votes
2answers
108 views
Format Fraction on picker to lowest common denominator?
Below is how I am formatting my picker currently. I would really like it to show 1/8 instead of 2/16 or 1/2 instead of 8/16. How can I adjust this to show my desired output? Thank you!
fractionArray ...
0
votes
1answer
95 views
How to format sting in root.plist?
Is there a way to format a string in the root.plist file? I have looked everywhere and I'm shocked there's nothing on this. All I want to do is center this:
<string>Version 1.1</string>
...
0
votes
1answer
68 views
Incorrectly Formatted Numbers in XML File - How to Change ? iPhone
I have an xml file which has many numbers which are formatted incorrectly in scientific format - e.g 0.000004 is formatted as 4e-006.
Can anyone suggest a good way to change the format of these ...
0
votes
5answers
131 views
Is it possible to define a date format that adapts to changeable data?
I need to find a date format which could adapt to the two following dates:
2012-01-22T14:27:31.176+0000
2012-01-22T14:27:31+0000
As you can see, the only difference is that date 2 does not have ...
0
votes
0answers
185 views
Get phone number from different formats in objective-c
iPhone saves phone numbers in different format based on localization.
I need to convert a phone number stored in Address Book, to a specific format.
Here an example of US formats:
+1 (###) ###-####
...
0
votes
1answer
325 views
iphone create .txt file with linebreak
I need to save NSStrings from an array into a .txt file in my documents directory, which is the easy part. but how do I put a new linebreak between each string?
i have already tried \n as you can see ...
0
votes
2answers
305 views
How do I format and put images in an email from my app?
There have been some older posts about this with very complicated answers. I was wonder if there is a simple way to take an image that is in your project and put it in an email, composed your app but ...
0
votes
4answers
222 views
Best way to display formatted NSString? Failed on UILabel
What is the best way to display a formatted NSString? I'm trying to format the choices for a multiple choice question on an app.
choices1 = [NSString stringWithFormat:@"\n\n Blue \n\n"
...
0
votes
1answer
2k views
Date Picker format problems
How do i solve the problem where i got 2011-07-21 15:55:01 +0000 , but the timing is off by 4 hr, how do i remove the +0000? And I want the format to be Eg. Friday 12 June 2011 1:30 PM
...
4
votes
1answer
1k views
phone number format for iPhone
I have to make calls programmatically in my iPhone app.
I have set of numbers in different countries with different formatting - braces, dots, spaces, "+" sign.
Can I simply remove all of this and ...
0
votes
1answer
268 views
ios sdk version format
Does the iOS version string follow a documented format? I want to parse the sdk version strings and sort them in ascending order. Does the Apple documentation say anything about this?
1
vote
1answer
950 views
How to set iPhone app language and region in main.h overriding Settings value
In a case when you want a App in a language/region/format other than selected iPhone settings value. Example a App with it's own internal language settings.
I know how to change the language, but ...
0
votes
1answer
372 views
UITextField string format
As the user is typing into a text field, is there a way to have the string conform to a format. So as the user is typing his string in every 5th character is proceeded by a hyphen in the UITextField ...
0
votes
1answer
360 views
UIWebView doesn't load some link
hello
I'm trying to write an rss feed viewer for my iPhone. In my DetailView I have a UIWebView where I want to display specific link retrieved with the rss item.:
NSString* url = [data ...
3
votes
2answers
646 views
How to format different characters in a UILabel's string differently?
I have a UILabel with a dynamic string as the text property. If I always want the first word to be underlined, do I need to separate labels and then try to line them up correctly? Or could I ...
0
votes
1answer
2k views
iPhone timeIntervalSinceDate
I'm trying to measure time between taps. I've gathered code from a couple other posts, but still no luck. I running into issues when I'm taking the difference between two time stamps and trying to ...
0
votes
2answers
1k views
In IPhone(Objective C) how do I get the current date formatted in miliseconds to send to a server Rest Web Service?
I am new to IPhone development. I need to take the current date from device and send to a server in JSon format. The server expects this date to be in milliseconds as since January 1, 1970, 00:00:00 ...
2
votes
2answers
5k views
Objective C / iPhone - How does the Date Time Picker format its dates (e.g. strips YYYY) AND how do I retrieve these formats?
When using the Date/Time picker on the iPhone/iPad, the year (yyyy) is stripped from the Date formatting in order to make room for the time.
How does it accomplish this based on the default unicode ...
1
vote
1answer
756 views
Objective C / iPhone: How do I extract the actual unicode date format strings for the current region?
I am completely new to objective c and iphone development, so please be gentle (just started looking at the code for the first time tonight).
According to this site:
...
1
vote
1answer
2k views
Displaying date in MM/DD/YYYY format in Iphone Data picker
In my Application i am using the UIdatePicker with fallowing code.
UIDatePicker *datePicker=[[UIDatePicker alloc] initWithFrame:CGRectMake(0, 0, 480, 216)];
datePicker.timeZone = [NSTimeZone ...
0
votes
2answers
243 views
How to give correct input date format in iphone?
I donno to give the correct date format of the input date, so please give me to correct input date format.
Here my sample code and the date formats.
NSString *yourXMLDate = @"Thursday, ...
1
vote
2answers
726 views
iPhone Dev: How to get string format attributes like NSLog
I'm trying to wrap NSLog function just to add some info every time I log something, but I have a problem.
The NSLog declaration is
void NSLog(NSString *format, ...) ...
1
vote
1answer
305 views
iPhone 4.0 NSDateFormatter crashes
I need to convert a NSDate to a string using my personal data format...
The problem is that this code on the simulator (4.01) crashes...
sometimes the code is "freezed", sometimes give the ...
1
vote
1answer
401 views
(iPhone app) error: too many arguments to function 'URLWithString:'
I'm trying to format a URL string however it's saying there are too many arguments. My code is below:
-(IBAction)tweetRandom {
//NSLog(@"CALLED");
test = 100;
[[UIApplication sharedApplication] ...
1
vote
3answers
422 views
iphone NSDate with NSDateFormatter Problem
All i am trying to do, is to get an NSString with the value of the current date ( NOW )
with this format:
7/14/10 8:20 PM
Exactly like the native mail app of the iPhone.
i am using the ...
1
vote
1answer
1k views
UIWebView loadHTMLString format
I'm new to the whole "iPhone Dev" world, and I am creating a simple app which has a feature to see the latest entries from a number of different Wordpress blogs.
I am able to grab encoded content ( ...
0
votes
2answers
169 views
0
votes
0answers
180 views
storage format for small iphone database?
I need to make a program, which will have about 1000 articles in it. Articles are grouped by categories, one article can be under more than one category. Users can browse through articles through ...
0
votes
2answers
2k views
Date from String using NSDateFormatter regardless 12h-24h setting
Today my question is about date formats and strings.
My application downloads some strings representing dates from the internet. The date format is always like this: "2010-05-24 at 20:45"
I need to ...
1
vote
1answer
405 views
How can I convert a timestamp to a user-friendly time string
I want to be able to present "today" and "yesterday" for recent dates in my application. I've got a date formatter in use currently to show dates (retrieved from data records) and will keep using this ...
6
votes
1answer
1k views
How to give a input date format in iphone
i am new to iphone development. In my input date format is "2010-03-05T18:20:40Z", and i donno to how to give a input format of my code.So i have mentioned in my code (?).
input date format = ...
0
votes
1answer
2k views
How to store parsed date value as date format in mutable array as mutable dictionary in iphone?
I am new to iphone development .I have parsed a xml page and stored the title, date, summary, in a mutable array "stories" as mutable dictionary "object for key".All the values are saved as string But ...
0
votes
1answer
353 views
How to print the date in iphone?
I am new to iphone development.I am having array of date .I want to print the date in my console.But I didn't want to convert it into a string and print it.I want to print as a date.How can i achieve ...
1
vote
2answers
350 views
On iphone, how can i get the system date in the proper format
Based on local user settings, I want to get the correct date format. For example, it could be any of these:
5 Jan 2010
January 5, 2010
1/5/10
And how about on windows?
Thanks.
2
votes
3answers
627 views
Formats for communicating between backend and Objective-C/Cocoa
I'm developing an iPhone app that is connected to a backend server. It needs to communicate with it many times, through several requests. I'm sending HTTP messages, but I want to receive more complex ...
5
votes
2answers
733 views
How to get a time since string from a NSDate object?
Basically, I'm getting a date time string from an API, and I want to show in the app that this activity happened '5 hours ago' or '3 days ago', and so on...
I am currently trying to get the ...
2
votes
3answers
3k views
Looking for some sample code audio conversion with the iPhone caf=>m4a
I am struggling with converting a recorded pcm/caf file (recorded via the AudioQueue) to a m4a file. I should be possible somehow with the "AudioConverter.h" but doesn't seem to be easy at all.
If ...
0
votes
3answers
333 views
Which image format is cost effective in terms of network operation for iPhone?
I want to display a thumbnail image in a cell of tableViewController, this thumbnail image is located at some remote place (URL of address is in XML file) so which format of image is cost effective?
