For some reason http://shirazraqs.com is causing mobile Safari to crash. I've never seen anything like it and it's 100% replicatable so it's a bug on the site.
I've already tried ripping out all of the javascript but the bug persists even then.
Any other troubleshooting advice? Better yet, has anyone heard of this? I've been unable ...
My problem is quite simple, I'm sometimes receiving a JSON connection without the whole JSON value in connection, as such I'm getting 2 fragments, together making a whole.
I can't call [jsonstring JSONValue]; until I have both joined together.
The problem is, it is sometimes, so I really want to know in advance whether JSONValue will w...
I am trying to add a UITabBarController to a UIViewController:
[self.view addSubView:tabBarController.view];
I get a warning:
warning: 'UIView' may not respond to '-addSubView:'
How can I add a UITabBarController to my UIViewController?
...
I have a UIViewController that contains a UITabBarController which is loading a UITableView from another nib. The TableView view is set to files owner. How can I set the view property in the UIViewController that contains the UITabBarController?
...
I am getting the following error on a very simple UITableView:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x5d73210'
Here is my code:
#pragma mark -
#pragma mark Table view data source
- (NSIntege...
Is there a way to send a print request to a printer using wifi or some other means?
Edit:
There must be, because there are some applications which lets you do that. But how do they do it? For example,
HP iPrint Photo
Air Photo
EuroSmartzPrint
and maybe others as well.
...
i have performed like this Is there any thing wrong performed by me?
NSURL *url = [NSURL URLWithString:@"http://111.111.111.111/BattleEmpire.Service/ApplicationService.svc?wsdl"];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
[theRequest setHTTPMethod:@"GET"];
NSURLConnection *theConnection = [[...
Hello,
I have a UIToolbar that I set up using IB with three buttons, left, middle and right. In some situations I would like to not display the middle button. Does anybody know of a way to hide a specific button on inside a UIToolBar? There is no hide property, all I can find is setEnable but this still leaves the button causing users...
I'm using the MFMailCompose method to do an inApp email and everything works fine. I sent the app out to have it tested and here is the response from my beta tester.
My phone is a 3gs 32Gb, OS3.1.3
Tested at home over wifi, send works with no problems, tested twice.
Tested again over 3g, send still does not occur until I open my mail b...
I'm trying to programmatically switch tabs. I tried to do this using the following calls:
tabBarController.selectedIndex = 2;
tabBarController.selectedViewController = checkinViewController;
In both cases, This is what I get:
This is what I want:
Any clue?
...
Hi all,
I have an app that has some non-US Localizable.strings files. They appear in the project as I expect them to: there's a Localizable.strings object, and sub objects for "en", "fr", etc. Each of those is a UTF16 text file, and I've verified that they get propagated into the build package as correct binary plist files.
When runnin...
Hi. You know three20's Thumbnail View? We're building an iPhone app and want to use that view, except each thumbnail will be a user's profile picture. Then, based on certain flags downloaded as JSON from the server, we want to overlay a green dot on the bottom left of each thumbnail (or give each thumbnail a blue border) where the corres...
I am looking for a PHP example/tutorial which can accept hi-scores/survey upload from an iPhone. Hopefully, the PHP script:
accepts POST, in additional to GET
works over SSL (https)
connects to MySQL
In addition, it'd best the iPhone can get a session from the server and submit the session value along with the hi-score. Thanks
...
i am using tabbarcontroller. In tabbar having one view.In that tab i call one function using Nstimer it open another viewcontroller.
First * sVC = [[First alloc] initWithNibName:@"First" bundle:[NSBundle mainBundle]];
[self presentModalViewController:sVC animated:YES];
Opened viewcontrller having one button.when user click that butto...
i am implementing application same as wickitude application apple store.I want to use wickitude api in my application.but i dont know how to use it.plese help me for this issue.Thanks in advance.
...
Hello,
I am working as an Iphone developer since 5 months but never ever i have used NSfilemanager class. Apple has documentation but still i am not cleared about its use. My question is that can anybody tell me(with example) how and when to use the NSfilemanager class ? Any help will be appreciated. Thanks.
...
I need to implement push notifications in my iPhone app. This is the first time I am working on this. I created certificates and a basic program. I need to link up with the server (the server is implemented in Java). I don't know how to link up. Can anyone help me?
...
Hi, everyone.
It's really wired. When at the first time a MPMoviePlayerController (e.g., theMovie) is created, its initialPlaybackTime can be set successfully. But when theMoive is released and re-create a new MPMoviePlayerController, its intialPlaybackTime can not be set correctly, actually the movie always plays from the start. The cod...
Hello All,
I am facing one weird issue with UIPickerview in IPad. I am not able to select the last row by making use of
[iPickerView selectRow:11 inComponent:0 animated:NO];
This is picker data source
iPickerArray = [[NSArray alloc] initWithObjects:
@"1:00",
@"2:00",
...
So this question is more around the design decision than anything else.Essientially, I want to build a iPhone/iPad app that will allow users to manage their database. Now there are two ways of doing this (i think).
Create native objective-c drivers for each database that provide a complete wrapper around creating/managing databases (ta...