Hey Guys,
Now it's time for me to ask a question. Until now I just ignored that Memory Leak. But now it's to find out which object leads to this leak.
I have the following code:
NSDictionary *addressDic = [[NSDictionary alloc] initWithDictionary:[NSPropertyListSerialization propertyListFromData:plistData mutabilityOption:NSPropertyLi...
To use presentModalViewController I must alloc and initWithNibName:bundle: a view. My question is: where do I release it? Does the dismissModalViewController:animated: handle the release?
...
I have developed an app for a client and am trying to help them submit to the app store. I am struggling with the process. When they try to submit they are asked to specify the bundle ID. This to me implies that they need to create the app id, request a distro certificate and then create the distro provisioning files. I assume then I ...
anotherViewController.myLabel = [NSString stringWithFormat:@"Telephone %@",
anotherViewController.title];
this is the declaration for a previus label however im not sure how to do this for a button...
the data array is located made in this format
phoneNumbers = [[NSArray alloc] initWithObjects:@"6940313388", @"4045434218", ni...
Will it? Or do you send two versions of the application to App Store?
...
I have 'n' button. I want to shuffle those button in my application. Or you can say that i want to shuffle the title over buttons. Is it possible.Its an Iphone app.
...
Hello Sir,
Are you able to fetch the content of pdf file . I am trying to do the same , i had spend a lot of time on it , i don't get any solution, can you give me some solution .
Thanks,
Dinesh Thakur
...
Is it possible to dynamically build a property or function call? I have a set of views I want to render in the same manner. So if part of my code is like this
self.ViewName.hidden = NO;
and I want to use a variable for the name of the view, is there a way to do it, something like
self{var}.hidden = NO;
Where 'var' is a NSString of t...
Hi everybody,
I have a server that should send a broadcast transimission, which I have to read in an iPhone App. I searched in the net, but I didn't find anything. I'm able to play a video starting from its URL, so my question is: how can I play in my iPhone a broadcast transmission?
...
I display a modal view controller and from there use buttons to add subviews. I need to add other view controllers as subviews, and then remove the one behind it. So can I reference the views by their index?
Practical example:
User sees page 1 (The root view controller)
User presses button which adds a subview, page 2.
User presses ano...
I have a simple Application for the iPhone which has a button and uses MFMessageComposeViewControler to send a text message. When the user presses the button, the MFMessageComposeViewController pulls up the keyboard and the user is able to send an sms, as expected.
I'd like to be able to manipulate that keyboard. In other words, for exa...
Hi friends,
I want to send the bytes to the server. So i donno Which data types is used for bytes. I have used "%s" and sent the bytes to the server. But In server side they have received 6 bytes only. But my case i want to send 32 bytes to the server. So Which data type is used for that?
EDIT:-
Here my sample code is,
-(void)sendDe...
I have a website which has a "360 virtual tours" section, it works with flash. I tried loading it on an iphone and it looks like crap, so I was wondering if there's something free that would allow me to generate the 360 virtual tours for iphone / ipads, the flash virtual tours are generated from WIDE images (something like 900x3NNN).
...
I am trying to write an application where the user records a sound and would be listening to the same with a background music from music library. However, when i try to play the recorded file using AVAudioplayer, the background music (iPod Player) is going very low and not audible. Is there any session property i need to set for playing ...
I'm diving into iOS development am building a simple Diary app. I'd like to be able to export my data somehow to my other computers. What are some common, simple ways to export plain textual data?
Thanks in advance for all your help!
...
I have a simple TableView containing several cells. Normally, I switch to selected cell details by tapping this cell. But what if I need a dedicated button for every cell? I've seen "Table View Cell" properties in Interface Builder, it has what I need, but it can't be added to existing cells.
How to properly add this kind of button to e...
Hello All.
Till iPhone OS 4 I have red /var/mobile/Media/DCIM/APPLE100 JPG files and extracted exif information such as location, thumbnails and other. In the iOS4 situation totally changed. The JPGs disappeared and I have no idea where to get locational information an open pictures.
Give me your light, please.
...
I'm trying to bring data into my app from an external file. everything's working until I add the event.title (the 3rd objectAtIndex below). I think I'm incorrectly using "stringValue" and it should be something else. the floatValues work fine.
event.latitude = [[values objectAtIndex:0] floatValue];
event.longitude = [[values objectAtIn...
I created a fairly simple iPhone app. Then figured I'd create an iPad version (Universal) of the app. Tried using the 'upgrade' option and that didn't work-out. So I created a separate universal app and copied the xib files into my project. That didn't work out either, so I deleted the xib files (and their associated .m & .h files. ...
I have a working view animation, that curls up a container view, while the containerview.subviews changes. (before the animation a UITableView will be shown, after it is a custom view, name keypadView)
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:.75];
[UIView setAnimationDelegate:self];
[UIView setAnimationTr...