1
vote
2answers
18 views
viewWillDisappear: Determine whether view controller is being popped or is showing a sub-view controller
I'm struggling to find a good solution to this problem. In a view controller's -viewWillDisappear: method, I need to find a way to determine whether it is because a view controller is being pushed …
0
votes
0answers
15 views
Cocoa Touch Data Persistence
Hi there,
I'm experimenting with Core Data, plist files, flat files and sqlite.
I can't seem to differentiate in terms of efficiency for small data sets.
In terms of the differences on the surface ( …
0
votes
0answers
28 views
Detecting Swipe In UINavigationBar
I am trying to get my view controller to detect swipes in the UINavigationBar that is automatically displayed by my app, but it refuses to detect swipes. Is there any way I can do it?
0
votes
1answer
66 views
UIPageControl dot for a search page
Hello, there!
Is there any way to add a magnification glass icon instead of the dot for my first page, that allows to perform some search, using the UIPageControl for my native application on the …
1
vote
4answers
81 views
When is the right time to change the datasource for a UITableViewController
After rendering a UITableView with a given datasource, I want to be able to switch to a different one prior to calling reloadData.
Tried doing it in the method
- (void)viewDidAppear:(BOOL)animated;
…
2
votes
1answer
105 views
Is there a solution to the 0.25 sec touch delay problem on iPhone OS? [closed]
Possible Duplicates:
Is there a way to fake a real touch into iPhone OS?
Is it possible to pull for touch points immediately after touchesBegan: gets called?
To see the Problem, do this:
…
0
votes
1answer
23 views
UIView getting disabled
I have a UIView that's starting about 600 pt's off the screen, but when it comes on to the actual frame, it seems to be disabled.
I've tried using a UIScrollView, but also can't because I need to …
0
votes
2answers
31 views
UIImageView - How to get the file name of the image assigned?
Is it possible to read the name of an UIImageView's image
that's presently stored in the ImageView?
I was hoping you could do something kind of like this, but haven't figured it out.
NSString …
0
votes
2answers
44 views
How do you create UIBarButtonItems with a radio interface?
I have a UIToolbar that needs three buttons in a radio style, meaning that of the three, only one button can be pushed at a time. The documentation makes reference to the possibility of setting up …
0
votes
2answers
52 views
UINavigationBar with a static image
Adding an image to a UINavigationItem's titleView is pretty trivial, but when I push a new view on the stack it animates the UINavigationItem sliding off to the left, along with the titleView, and …
0
votes
1answer
43 views
Nesting Custom Classes/XIB’s with Interface Builder
I'll try to make this as short as I can.
I wrote a custom class that extends UIView with a couple of IBOutlet properties, and it has a XIB associated with it where those IBOutlets are linked to.
I …
0
votes
1answer
34 views
How to read contacts from addressbook in a tableview ?
Anyone knows how to read all contacts from address book and show it in a tableview in the main screen ?
37
votes
7answers
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 UIImageView). Here is …
0
votes
1answer
43 views
iPhone Keyboard Shift state: how to control it?
Hi all,
Sorry if my question if a dumb one, but I couldn't find a way to solve it. The thing is a have a custom text view that sometimes need to wrap text according to its own rules. Everything works …
0
votes
2answers
68 views
why does viewDidAppear not get triggered?
i have a root view controller that inserts a subview at index 0 at its viewDidLoad method.
i am trying to get the subview to become firstResponder, but can only do this - from my understanding - in …
