3
votes
5answers
3k views
Cropping a UIImage
I've got some code that resizes an image so I can get a scaled chunk of the center of the image - I use this to take a UIImage and return a small, square representation of an image, si …
5
votes
1answer
962 views
Determining when an EDGE connection comes back after a dropout on an iPhone
I've incorporated Apple's Reachability sample into my own project so I know whether or not I have a network connection - if I don't have a network connection, I don't bother sending out and request …
4
votes
10answers
4k views
Rounded Corners on UIImage
I'm trying to draw images on the iPhone using with rounded corners, a la the contact images in the Contacts app. I've got code that generally work, but it occasionally crashes inside of the UIImage …
0
votes
0answers
18 views
Setting clearButtonMode for UISearchBar
Haven't looked at this in a while, so I could be misremembering, but I thought it was possible to set the clearButtonMode of a UISearchBar without walking the subviews to find the UITextField insta …
0
votes
What’s the UITableView index magnifying glass character?
You can certainly put a Unicode character in the table view index (I've done this with other characters) and put your header in the first table section in lieu of of the tableViewHeader. That said, …
6
votes
-[UITextField isFirstResponder] returns false even though field is currently editing
What about checking the value of the editing property, ie [myTextField isEditing]?
I think your button takes over first responder status when you tap it.
…
0
votes
Rounded Corners on UIImage
I actually had a chance to talk about this with somebody from Apple at the iPhone Tech Talk in New York. When we talked about it, he was pretty sure it wasn't a threading issued. Instead, he though …
0
votes
UITableView - delete button
Building off of E-ploko, may sure you're not positioning things absolutely. ie, if you want something to appear 10 pixels from the right boundary of the content view, calculate what the position sh …
1
vote
IPhone - Setting NSString from array, double standards!
Like benzado says, it's an issue retaining the selectedCategory value in ButtonsPageViewController.
Are you using @property and @synthesize …
1
vote
How to create a demo like Convertbot
This was too long to leave as a comment on coneybeare's answer, but it builds off the idea.
Haven't had a chance to try it yet, but it sound theoretically similar to similar to Application …
0
votes
Blurry UILabel text in accessory view of MKAnnotationView
Are you sure your label is being located on a pixel boundary? I've seen blurryness when I've calculated a label frame programmatically and not taken into account that my calculations could return a …
