Search Results

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
954 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
3k 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 …
1
vote

Accessing crash logs on iPhones used for ad hoc distribution

Related to what @millenomi said - from what I can tell, crash logs are downloaded when you connect your iPhone to the computer, not when you sync the phone via iTunes. If your users have iTunes con …
0
votes

Display a loading icon while a network resource is being downloaded

Ben answer looks pretty similar to what I'm doing - your guess about the thread is probably accurate. Are you using NSURLConnection to handle your downloading? If so, are you using the synchronous …
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

How to prevent a UiView from sliding down underneath the TableView?

To build off gabtub's answer, the UIView containing your table view and your bottom view doesn't need to implement the UITableViewDelegate and UITableViewDataSource methods. Since it sounds …
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 …
0
votes

how to get latitude\longitude by address with iphone sdk?

There's also CoreGeoLocation, which wraps up the functionality in a framework (Mac) or static library (iPhone). Supports lookups through Google or Yahoo, if you have a preference for one over the o …
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 …
1
vote

How to make the UIKeyboard appear as part of a view?

Which SDK are you building for? I might be wrong, but I thought Apple said something about improving the behavior of pushing view controllers onscreen and the behavior of other animations. …