-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi All,
Please bear with me, newbie just learning the ropes.
I am getting the below message, when I try and run my app, it quiets, but then does let me re-open fine after the first quit.
I tried a few things and if I turn on if i 'activate breakpoints' it all works fine...
Tried a few suggestions…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Dear Everyone,
I've a application which has been written for 2.1.
Now I'm running that app on xcode 3.2.5 and SDK 4.2.
Here's the problem, When I try to Build and Run, I get the following error:
UIKit.framework/UIKit.h: No such file or directory
In file included from users/.../classes/Radio.m
UIKit…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm facing what appears to be a UIKit bug, and it takes the combination of two less commonly used features to reproduce it, so please bear with me here.
I have quite the common view hierarchy:
UITabBarController -> UINavigationController -> UITableViewController
and the table view controller…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
my app got crashed an showed that keyword. There is no error and warning. can some body help me??
this is stack that showed :
Call stack at first throw: (
0 CoreFoundation 0x012ccbe9 __exceptionPreprocess + 185
1 libobjc.A.dylib 0x014215c2 objc_exception_throw…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm encountering a difficult to debug issue with a static library project when attempting to animate a view.
It works fine when debugging (and even when debugging in the release configuration), but throws an error archived as a release:
Exception Type: EXC_CRASH (SIGSYS)
Exception Codes: 0x00000000…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 doing write/what i need to do?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have the following code to open google maps:
NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@, Anchorage, AK",addressString];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
But it doesn't work and there is no error. It just doesn't…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have myClass instantiated by my appDelegate, I have another class, newClass instantiated by myClass. From the newClass instance, I want to access a property in the myClass instance that created it. I have done this by:
[[[UIApplication sharedApplication].delegate myClass] property]
This works…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
The following is not working:
[[UIApplication sharedApplication] addObserver:self forKeyPath:@"windows"
options:(NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld)
context:NULL];
Together with that, on the Observer side:
- (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have an iphone app project. I analysed it using instruments memory leak tool. According to instruments I have 2 leaks the Trace is as follows:
start main UIAplicationMain _run CFRunLoopInMode CFRunLoopRunSpecific PurpleEventCallback _UIAplicationHandleEvent sendEvent: handleEvent:withNewEvent:
After…
>>> More