How do I calculate a logarithm in iOS?
I want to calculate a logarithm in iOS. Can Objective-C do this? ...
I want to calculate a logarithm in iOS. Can Objective-C do this? ...
What are utility applications & how to use them in Iphone. Plz give me some link for starting with utility application(tutorial & implementation). Thanks. ...
how to get user's facebook profile pic via fbconnect in my app iphone ? ...
I am running a synchronise process on the main thread because I don't want the user to try and do anything else during the process. However I want to update the interface. For the most part it does update, but sometimes the label I have has not quite caught up to the text I have set it. Is there a way of forcing the UI to refresh. ...
Hi Guys , I need a help from your side, Actyally I done showCameraControls = NO; and I had a customized button for preview to th captured video.How to get the previedw mode when showCameraControls = NO;. Guy's Please help me to get rid of this. Hope I will get quick response from your side. Thanks in advance, Madan Mohan. ...
Localization is working for other languages except of English pretty well. Every time I compile my app I see the key name instead of the localized string. Example: NSLocalizedString(@"WelcomeKey", @"") In Localizable.strings I have the corresponding entry: "WelcomeKey" = "Welcome"; In the simulator I always get the key name Welcome...
i want to stop currently running method for a short duration.. can i do it without using any thread ? ...
Hi Guys, We are company with 10 iOS developers. Do we need to purchase developer license for each machine? Or is there any concept of purchasing bulk licenses? Like what is the alternative of single user license? Regards ...
Hi I have just started using UIDatePicker in my iPad app, but is there a way of checking when the date has been changed? I want to do something when the date is changed. Hope you can help, thanks. ...
Hi, i'm trying to build a function that will tell me the range of a string at an occurrence. For example if I had the string "hello, hello, hello", I want to know the range of hello at it's, lets say, third occurrence. I've tried building this simple function, but it doesn't work. Note - the top functions were constructed at an earlie...
Hi there I have an NSDictionary. It has keys and objects. For the purposes of simplicity the keys are Question numbers and the objects are calculated Answer scores. Now how I did it before was that I set the answer score as the keys and the question numbers as the objects. This way I could get an array of allKeys from the dictionary, ...
Hi all, I have a dictionary that hold address details, sometimes it can hold, 'name, email, telephone' other times, just 'name, mobile' name = "Someone"; email = "[email protected]"; telephone = "01000 000000"; or name = "Someone Else"; mobile = "07700 000000"; I want to display these in a detail table view, in my head this ma...
Hi I have this code: - (NSString*) tableView:(UITableView *)tableView titleForHeaderInSection:(int)section{ curDate = [NSDate date]; // Get current date calendar = [NSCalendar currentCalendar];// Init calendar comps = [calendar components:NSYearCalendarUnit|NSMonthCalendarUnit|NSWeekCalendarUnit|NSWeekdayCalendarUnit fromD...
Hi, everyone, I want to ask a question about the iPhone plist. What is the size of the plist in each iPhone application? Thank you. ...
Whenever I run my code it gives me an error. I couldn't find the solution. The error is: command/developer/platforms/iphonesimulator.platform/developer/usr/bin/gcc-4.3 failed with exit code 1 ...
Hi, I'm having trouble importing a specific font weight into my iPad project. I've managed to get custom fonts embedded using the info.plist file and referring to them using CTFontCreateWithName, but I'm having trouble now it comes to using a specific font weight. The file is called "UniveConBol.ttf" but in the installed font is just na...
Hi, everyone, I want to ask a question about the iPhone. I am writing a program which can add the record to the iPhone build-in Contacts. However, I don't know that how many users can store in the iPhone Contacts. Is there some limitation (e.g. iPhone build-in Contacts only support 2000 record). of the size of the contacts? Besides, Ca...
I'm trying to send a single image from my iPhone app to my Google App Engine Java server. On the server, I'm getting a FileUploadBase$InvalidContentTypeException, which is thrown when the request is not a multipart request. ServletFileUpload.isMultipartContent(req) is printing false. I'm trying to send an image, encoded as a jpeg, and...
Hi, everyone, I want to ask a question about iPhone. Is it possible to retrieve the creation time from the iPhone contacts of each record? Thank you. ...
-(void)alertOKCancelAction { // open a alert with an OK and cancel button UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Return Home" message:@"Are you sure you want to return to the menu?" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil]; [alert show]; [alert release]; } -(void)alertConnect...