Tagged Questions

16
votes
3answers
4k views

Adding view on StatusBar in iPhone

Is it possible to add a UIView on the staus bar of size (320 x 20) ? I dont't want to hide the status bar , i only want to add it on top of the status bar. Thanks
15
votes
1answer
177 views

difference between appdelegate and delegate in viewcontroller

I want to integrate one sample code with (for example SampleCode project) my iPhone application .In the sample code in firstViewController is added in MainWindow.xib and linked to viewController ...
9
votes
2answers
6k views

Getting a reference to the UIApplication delegate

I'm writing my first iPhone application and I'm having trouble switching views. I have 2 views and a reference to each in the AppDelegate (an instance of UIApplicationDelegate). I create instances ...
6
votes
4answers
5k views

AppDelegate, RootViewController, and UIApplication

I am trying to figure out the relationship between the appdelegate, RootViewControoler, and UIApplication. Here is what I kinda have figured out so far: When starting your application up, main.m ...
6
votes
4answers
2k views

How can I remove UIApplicationMain from an iPhone application?

I'm trying to port a game library over to the iPhone. Unlike SDL, this library doesn't take full control of your main() function, it's communicated with via quickly-returning functions from your own ...
3
votes
1answer
1k views

keyWindow] is nil?

I want to convert a CGPoint from my UIView to UIWindow coordinates and have realized that UIApplication keyWindow is always nil, how come is this? I have tried the convertPoint:toView: method form ...
3
votes
2answers
2k views

UIApplication openUrl not working with formatted NSString

I have the following code to open google maps: NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@, Anchorage, AK",addressString]; [[UIApplication sharedApplication] ...
3
votes
2answers
1k views

Call using Skype.app via openURL:

Does anybody know if it is possible open Skype.app to call phone via - (BOOL)openURL:(NSURL *)url UIApplication message? If it possible, what url a need pass to this message? Thanks
2
votes
1answer
211 views

iphone - open URL with japanese characters

In my application, the requirement is to use UIApplication's openURL method to start browser with following URL: http://192.168.100.80/1003/images/test/いうydさdfghjk-320x160.png Above string is stored ...
2
votes
3answers
565 views

Is it possible to subclass UiApplicationDelegate protocol?

To be honest I don't know how to call it, so I'll try to describe it. UIApplicationDelegate protocol has "application:handleOpenURL:" method. And if I implement this method in my ApplicationDelegate ...
2
votes
4answers
2k views

Restarting iPhone application after [UIApplication sharedApplication] openURL

As title says I'd like to know how to restart my iPhone app after doing this: [[UIApplication sharedApplication] openURL:[NSURL UrlWithString:@"tel://0123456789"]] It seems pretty simple as I saw ...
2
votes
2answers
443 views

NSTimer doesn't work without UIApplication?

I have a custom iPhone application which doesn't rely on UIKit in any way (it is not linked to UIKit). This means that I'm not using UIApplication and therefore not calling UIApplicationMain. The ...
2
votes
2answers
1k views

how to detect idle user in iphone-sdk

In my Application I want to call Logout Function if user is idle for certain amount of time how to accomplish this answer doesn't work for me ...
2
votes
1answer
5k views

Proper use of UIApplicationMain

I have decided to load my views programmatically, so putting: int ret = UIApplicationMain(argc, argv, nil, nil); Would not work. I do have a ViewController and an AppDelegate, though. What would be ...
2
votes
2answers
141 views

UIView not handling touches

I have set my status bar hidden in my Application. [application setStatusBarHidden:YES]; I have added an UIView on the window as a subview at 0,0,320,40. But I am not able to get touches on my View ...
1
vote
2answers
133 views

When should I release [[UIApplication sharedApplication] delegate] object?

I'm using the following code many times in my app (especially to manage a NavigationController): MyAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; When should I release it ...
1
vote
1answer
170 views

Cannot access appdelegate instance variable from related View Controller

My app name is PropertiesSearch so the project contains the following files: PropertiesSearchAppDelegate.h PropertiesSearchAppDelegate.m PropertiesSearchViewController.h ...
1
vote
0answers
327 views

Calling google maps with multiple destinations from iOS app

I have not had success launching the Google maps application with multiple destinations and I have not found anything specifying if it is possible or not. while this code works great for one ...
1
vote
1answer
179 views

a question about the sendEvent method of UIApplication

I override the - (void)sendEvent:(UIEvent *)event method of UIApplication to handle some touch event. .h @interface myUIApplication : UIApplication { } .m @implementation myUIApplication - ...
1
vote
1answer
268 views

Sending email with html tag via [UIApplication sharedApplication] on iPhone

I am trying to send an email with an embed code (html snippet) but the email body is empty. NSURL *url = [NSURL URLWithString: me.emailUrl]; [[UIApplication sharedApplication] ...
1
vote
2answers
508 views

How to know if current device can have background mode

I am doing some tasks after having entered in background mode. I want to do these tasks only if I am in background mode so I did : if ([[UIApplication sharedApplication] applicationState] == ...
1
vote
1answer
569 views

UILocalNotification show view after notification happens?

I am using UILocalNotification. When the notification shows, and the user clicks my alertAction, how can I direct them to a specific view when my app loads? (Similar to how the calendar app shows you ...
1
vote
1answer
111 views

Can I get iPhone or iPad Usage Stats from UIApplication?

Is it possible to access iPhone or iPad stats on App Usage through UIApplication or something. Trying to figure out on some iPad's we have which apps are most viewed and overall how long they are ...
1
vote
3answers
171 views

How do you deal with singleton objects in your app?

The first approach that comes to my mind is to put the singleton object in the appDelegate object as property. In this way you can access it from anywhere using #import "myAppDelegate.h" // ... ...
1
vote
4answers
4k views

how to get my UIWindow using UIApplication?

I have only one window and I tried UIWindow* mWindow = [[UIApplication sharedApplication] keyWindow]; but this returned nil. I also tried: UIWindow* mWindow = (UIWindow*)[[UIApplication ...
1
vote
2answers
679 views

System ignore iPhone rotation

Is there a function like beginIgnoringInteractionEvents in UIApplication that ignores rotation instead of touches? I need my app NOT to rotate just in an MPMovePlayerViewController that I present. ...
1
vote
0answers
319 views

applicationIconBadgeNumber - How to display with empty value?

How to I make a red number indicators without any number inside it ? Or anyone have any ideas that help user know if the App is running on background or not ? Thanks for helping me Tung Do
1
vote
1answer
233 views

iPhone SDK - On Device Locked or On Device Unlocked and application shown

I need to find a way to detect when a device has been locked, or else a way to detect when the device has been unlocked, and sent straight to the app where it left off. Is there some method like: ...
1
vote
2answers
267 views

How can I launch app store from my application

Im trying to implement button which opens app store application from my app. I use this simple line of code, which opens safari but not app store application. [[UIApplication sharedApplication] ...
1
vote
4answers
3k views

doesn't return windows

I need to add a view to window on iPhone, so i tried to do this: [[UIApplication sharedApplication] windows], but it seams that the array contains only one window. Can anyone tell me what i'm not ...
0
votes
2answers
30 views

Get Safari's last redirected URL to my main UIviewcontroller

In my app, i call safari to open (uiapplication delegate), safari comes into foreground and there are some url redirections. At last, there's a url that i want to save in my main application. How ...
0
votes
1answer
38 views

How implement scheduling event with post a message on fb

I am creating an application in which i have add a facility for post message on ur account. Now this facility i am adding an event for scheduling. With help of that user can write a message and post ...
0
votes
3answers
98 views

working of main.m in iphone programing [closed]

Possible Duplicate: Is there any reason to modify the main.m file in your iOS applications? I am new i the iphone application i want to know that why we dont use the main.m file in the ...
0
votes
0answers
54 views

UIResponder Class issue with idleTimerDisabled

in the AppDelegate.h file i am using like @interface AppDelegate : UIResponder <UIApplicationDelegate> but then i get a error says self.idleTimerDisabled property not found on the ...
0
votes
0answers
36 views

Strange Error in UIView.h, UIApplication.h and UIPrintInteractionController.h?

In my project I don't know why whenever i am trying to run its showing following error. Is it any framework missing ? Error in following classes: 1) UIView.h 2) UIApplication.h 3) ...
0
votes
2answers
134 views

Make phone call by using UIApplication sharedApplication

I made a button, and link the button to the following openPhone method. But it didn't work. Error message shows "Thread 1:Program received signal: "SIGABRT".". Should I do anything else that I do not ...
0
votes
3answers
86 views

Can i have a single NSMutableArray in my multiple views application?

I have a navigational based application which has multiple views. Is it possible to use one single NSMutableArray for the whole applicaiton? Can i add objects to that NSMutableArray in one view and ...
0
votes
1answer
48 views

Releasing appDelegate instances? [closed]

Possible Duplicate: When should I release [[UIApplication sharedApplication] delegate] object? I'm creating instances of UIApplication many times in my app to access shared infos, like ...
0
votes
1answer
534 views

IOS Shared Application hide StatusBar

I am hiding the Status bar with the below code and it gives me a memory warning level1 . It does nothing to the app itself during the memory warning but I do not like to have such things happening. Is ...
0
votes
2answers
41 views

How to make web URL not to animate when been opened from Application?

I'm using following code to open URL on a button click from application: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.innotrack.eu///"]]; But when it opens the ...
0
votes
1answer
48 views

URL can't be opened from the application

In an application, this: http://web.extebtion/projects/projectName/myaccount.php?1310625280.37+TE1PUFha-MDEyMzQ1Njc4OV85X3NpbXVsYXRvcg==+1310625280.37 (TYPE OF) URL is being tried to open by: ...
0
votes
0answers
493 views

How to use [[UIApplication sharedApplication] openURL:] open other app?

I followed http://iphonedevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html instruction to open app1(GlassButton) within app2(FontTest). The open method of FontTest as ...
0
votes
2answers
69 views

_UIApplicationHandleEvent deletes data

My situation: I create an object of singleton class. Object has information about Ivars of another object and some NSStrings field. -(id)init { [super init]; objectID=[NSString ...
0
votes
1answer
4k views

UIApplication beginBackgroundTaskWithExpirationHandler question

guys :) I have an iOS alarm app, which uses UILocalNotification-s to schedule the user defined alarms if the app enters background. Since this (in my implementation) can be a relatively long process, ...
0
votes
1answer
254 views

iOS - How can I create and destroy serial instances of UIApplication?

This may be of little use to anyone, but it's possible to return from UIApplicationMain by nesting the call in a try{}catch(NSException* e){} block. I'm currently doing this for testing my setup ...
0
votes
1answer
197 views

how to inherit UIApplication instead of NSObject

i have 3 xcode projects and i want to integrate them into one project. Two of those projects are view based application, hence the application delegate has inherited NSObject and ...
0
votes
2answers
2k views

iOS How to exit current app after using UIApplication openURL to launch a browser

I am very new to iOS development. The app I need is very simple: just open a web browser and go to a specific URL when my app is launched. So in the delegate file, in didFinishLaunchingWithOptions, I ...
0
votes
2answers
677 views

iPhone: Quitting aplication using [[UIApplication sharedApplication] terminateWithSuccess];

I have built a small app that gets informations from a database on a website. the first thing the app does is to fetch an rss feed and then display it. Apple guidelines tell to let the user decide if ...
0
votes
0answers
140 views

Loading animation for iphone OS 4

i just converted my old app(2.1.3) into new app(4.0).I got some error in loading animation. Can any one have the code which works on iphone OS 4.0?
0
votes
1answer
411 views

iPhoneOS, using applicationWillResignActive

I want to use this function applicationWillResignActive perform some tasks. before the application shuts down due to incoming call, message or user close it manually. Can i send an email message/in ...

1 2