Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to display a small refresh button using UIButton in a standard UIView using the refresh icon built into UIKit. If I use an UIBarButtonItem it can be created as a refresh button, but I've had no luck in using this icon in other places.

So far I've tried to "steal" the refresh image of a UIBarButtonItem using the code below, but the image returned is nil:

UIBarButtonItem *temp = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:nil action:nil];
self.refreshButton.imageView.image = temp.image;
[temp release];

Any suggestions, or do I have to provide a refresh image myself?

share|improve this question

5 Answers

up vote 2 down vote accepted

You'll have to either make one yourself, hire a designer, or find a free one somewhere that you can use. The Toolbar buttons can only be used inside of a toolbar.

share|improve this answer
Thanks, though not what I hoped to hear I suspected it would be the case. – Claus Broch Jun 29 '10 at 21:18

Here's the png, straight from the OS: http://cl.ly/A1FI

share|improve this answer
Thanks! I really needed that! – Jensen2k Sep 8 '11 at 11:19
I'm curious, in which directory are these files located on the device? – JonasG Feb 15 '12 at 14:03

Glyphish has a free set of icons, including a "refresh" icon, which you can use if you agree to the Creative Commons Attribution license terms.

share|improve this answer

I don't know that Apple would allow you to use their UI images in a way they deem inappropriate, but you could always try a screenshot and store the image in your project yourself. You can run a sample in the simulator to get an easy screenshot on your development machine.

Failing that, I've found a ton of excellent icons sets at http://icons.mysitemyway.com/

share|improve this answer

IN OS X, you can get that icon with NSImageNameRefreshTemplate, check the doc "System-Provided Icons". But for iOS, system provided icons are not exposed to our developers I think.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.