1
vote
1answer
62 views
Why isn’t my variable being assigned
Ok I think my understanding of properties in objective c may not be what I thought it was.
In my program I have a singleton that contains my class.
In my class during the init I …
0
votes
2answers
54 views
How do I prevent a specific view from responding to shake gestures?
Hi. I use shake gesture for my application but i have problem!
My application is a multiview application and i want use shake gesture on the view 2.
If i active shake gesture on v …
3
votes
7answers
77 views
When to use a UIView vs. a UIViewController on the iPhone?
I have always sort of wondered when to use a UIView vs. a UIViewController on the iPhone.
I understand that you shouldn't use a UIViewController unless it's a full-screen view, bu …
1
vote
2answers
48 views
How to add background image on iphone Navigation bar ?
Hi guys ! i want add an image background to my navigation bar like this :
what is the code ?
thank you
ist it right ?
//set custom background image
UIImageView *background …
2
votes
3answers
55 views
How to detect stack objects falling down
Hi to All,
In my game, Objects are falling down and I have to catch that object and have to create a stack. I am doing this by using chipmunk physics engine. I am able to create s …
0
votes
1answer
29 views
NSKeyedUnarchiver causing memory leak
Hi guys!
I have a memory leak problem, I'm saving an array into a file using:
[NSKeyedArchiver archiveRootObject:myArray toFile:MyFile];
the objects included into the array hav …
0
votes
2answers
33 views
On the iphone, how do I add a location to the maps application?
Is there a way to add a location from an MKMapView in my application to the built-in Google Maps app?
From what I understand there is probably one of two ways to do it: using [[UI …
-2
votes
1answer
49 views
how to insert addressbook contacts in tableview
Hi Guys,
How do i insert addressbook contacts in a tableview....?
i got stuck up with this please help me find out guys.....
1
vote
3answers
40 views
Adding UIButton outside of the screen
Hi,
I'm creating and adding an UIButton dynamically to UIView, like:
UIButton *btn = [UIButton buttonWithType:UIButtonTypeContactAdd];
btn.frame = CGRectMake(100, 10, btn.bounds. …
1
vote
1answer
29 views
Am I permitted to change the object graph in NSManagedObjectContextObjectsDidChangeNotification?
I'd like to know when an object has been inserted into my Core Data MOC and when it has, add it to another object with a relationship.
So I watch the NSManagedObjectContextObject …
1
vote
1answer
67 views
Read NSNumber from NSData
Hi,
I pretty new to Objective-C (and C itself) and need to consume a NSData from a HTTP output. I've never really worked with byte arrays or had to worry about little/big endian i …
0
votes
2answers
45 views
Display full Addressbook..
HI guys ,
How do i display the full addressbook in a tableview...using UITableview and Abaddressbook class.......?
2
votes
2answers
40 views
Settings IBOutlets to nil in dealloc
In the section titled 'Memory Warnings' here http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmNibObjects.html, I don't follow why the …
0
votes
3answers
45 views
How does presentModalViewController interact with nested UITabBarController and UINavigationController
I have a view that I want to take up the full screen, so I override the init method, and some of the view methods:
- (id) init {
if (self = [super init]) {
self.wantsFullScr …
0
votes
2answers
32 views
Cocoa-Touch: Using UITabBarController with multiple tabs as UINavigationControllers
I'm building an app that has 5ish tabs, each of them will have table + item details views.
So I have to create a UITabBarController and the items instead of being the direct views …
