0
votes
2answers
32 views
UIImage view questions
I have a UIImageview in my application and I was wondering how I can show an image in it pragmatically and change it whenever I want to! I think my major problem is exactly WHERE t …
0
votes
1answer
40 views
How can I show a sequence of buttons highlighting?
Similar to the Simon games of old, I want to show the user a button sequence & then have them repeat it back. The place I'm stuck is showing the first button highlighted for, …
0
votes
1answer
27 views
iphone MFMailComposeViewController
Hi,
Is there a way to dismiss the keyboard from MFMailComposeViewController ? If the user rotates the device, I am loading a separate controller without "send" or "cancel" being p …
1
vote
1answer
31 views
Objective-C Protocols within Protocols
I recently began trying my hand at using protocols in my Objective-C development as an (obvious) means of delegating tasks more appropriately among my classes. I completely underst …
1
vote
3answers
76 views
NSZombieEnabled doesn’t report the type of object causing an EXC_BAD_ACCESS error
I have a crash that is happening deep within UIKit for some reason; an EXC_BAD_ACCESS error is happening something like 8 calls deep into a dismissModalViewController call. I trie …
0
votes
1answer
32 views
Objective-C use typedef enum to set Class behavior, like Cocoa.
Hi
Im extending the UIButton Class to be able to set the font and color of the UINavigationBarButton ( from this code example: switch on the code )
I goes like this:
@interface …
0
votes
1answer
88 views
Checkbox cell in a table view: User can’t check it
I need help in using checkbox cell. I currently added the object to tableview. It looks ok until i tried building and running the program where I cannot check the checkbox. I am cu …
1
vote
3answers
151 views
What’s the limit for the size of iPhone apps?
I have an app which is quiet huge. It has tons of images and sounds. In total it's 30 MB in size.
1) Is there an official limit for the app size?
2) Are there other "practical" l …
1
vote
3answers
29 views
Will the system send an NSWillBecomeMultiThreadedNotification when I create POSIX threads?
I tried it, but I think this notification isn't coming. Is that the normal case?
32
votes
6answers
3k views
UIImagePickerController, UIImage, Memory and More!
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a U …
0
votes
2answers
81 views
How do you animate the resizing of a tableView without its rows/subviews getting clipped?
EDIT: I originally asked this question in regards to general view resizing, but I realize now that it's something much more specific to tableViews.
Say that a tableView originally …
2
votes
3answers
92 views
Which multithreading techniques are available for iPhone OS and which should I use?
Problem: I have made a class which plays a big 300 x 300 px image sequence animation of 100 frames. This class has a -start method that kicks off the animation, and then a -animate …
0
votes
2answers
50 views
Accessing private variable from Category generates linker error
I have the following code:
@interface UIAcceleration (Simulation)
- (id) initWithTimestamp:(NSTimeInterval)aTimeStamp
X:(UIAccelerationValue)ax
Y:(UIAcceleratio …
0
votes
0answers
39 views
UITextView setText breaking hasText
So here's my code:
[self.thing setText:[NSString stringWithFormat:@"Dear %@, ", name]];
For some reason, this leaves some kind of junk data in there that causes hasText to r …
0
votes
3answers
76 views
motionEnded getting called multiple times
I have a UIViewController subclass that I am trying to have handle the shake event when its view is up.
Here are the relevant methods I've implemented:
- (void)viewDidAppear:(B …
