Tagged Questions
0
votes
2answers
109 views
How to presentModalViewController in applicationDidFinishLaunching?
Here is my situation:
I have a TaskListViewController(UITableView) which need Internet.
So I used AFNetworking to do some login work(with demo account and password) before the TaskList is showed.
Now ...
0
votes
1answer
36 views
How to remove status bar while the 1st image launches
I want to know how remove the status bar when the first image is launching when I start the application.
Thanks.
2
votes
1answer
187 views
“Application windows are expected to have a root view controller at the end of application launch” message when root view is being set [duplicate]
I have the following code in my app delegate:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
MBFeedViewController ...
0
votes
0answers
153 views
Launch the app with Options or With Custom URL scheme after installing from iTunes
Is it possible to navigate user to specific screen of our app when he/she installs the app from a link to iTunes Store.
let's suppose i shared a link of our app to some friend via email, if the app ...
2
votes
3answers
477 views
open iOS app from another app
I am trying to open my app MyApp from another app, I've already defined the custom url for MyApp (i.e. myapp://). if I write myapp:// in safari and click on go it will open MyApp. Now what I want is a ...
0
votes
1answer
54 views
iOS app crashes/hangs when launched manually but not otherwise
My app hangs at a certain point only when it is launched manually by tapping on the app icon on my device. It runs fine when Xcode launches it on my device and when Xcode launches it on the ...
1
vote
1answer
156 views
How can I detect that my app has been launched from a game center push notification
I am testing an app to run in Game Center. When the app launches from the icon I have a preamble that I want to avoid if the app is launched from Game Center (either from the Game Center app or as ...
0
votes
1answer
259 views
iOS app launch takes too long to display
Working on first app, have most of the programming done but app is taking too long at launch to display first tableview on tabbar. It takes 8-10 seconds on launch to display. Looking for help on ...
0
votes
0answers
182 views
Possible to launch iOS app from iframe to avoid redirect?
I'm trying to launch an application with a registered URL (say widget://) from the safari browser if and only if it is installed.
Answers to this question talk about potential javascript solutions. ...
0
votes
2answers
368 views
Best practices to make a sign in view at launching app on ios
I would ask you what are the best practices to make a sign in view on ios.
And only after fetching those text fields, launch the application content.
Does I make two windows ? Apple recommended to use ...
2
votes
1answer
959 views
Simulate Launch Options
in my appDelegate, I have some specifications when the App is launch with a File from i.e. Mail app.
When I launch my App, everything works normal. When I launch the App via File from Mail, the App ...
2
votes
1answer
527 views
iOS 4.3.2 user reported app crashing on launch
An update of my app has just been approved by Apple and users are now complaining the app does not launch anymore. It also happens to some new users.
I have absolutely no idea where the problem is ...
-1
votes
1answer
116 views
Application not launching on tappping the app icon on home screen
We have an application build for the several ipad users. The provisioning profile used for building this app has all the UDIDs. The application was working fine till last week.
Now the users are ...
1
vote
2answers
2k views
iOS: How to Have an Application Launched with [UIApplication sharedApplication] from My App Return Control Back To My App
Right now I'm able to launch something like the mail app with this call:
NSURL* mailURL = [NSURL URLWithString: @"emailAddress@example.com?cc=&subject=Feedback"];
[[UIApplication ...
