Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mike1360

macrumors newbie
Original poster
Nov 9, 2013
13
0
Hi, Im pretty new to coding and was wondering how to, if possible, have a toggle button with the image changing as well. For example, the button displays an image of a happy face for easy mode. If someone was to click it, it turns to sad face for hard mode. But they can keep clicking back and forth and have it be able to register in the code so I could do something with that easy/hard mode? Thanks!
 
If you only want two end states, just create an action that changes the value of a Boolean variable to true or false. The value is initially true, representing easy, and tapping the button sets it to false. From there you can changes the image depending on the value, and probably update the gameplay as well.
 
Look up Apple's documentation for the UIButton reference. I'm sure there are some methods that allow you to alter a button's image based on its state (true/false), but I'm at work on a PC with outdated software on it, and the developer page gets rendered unreadable by this version of Internet Explorer, so I can't give you the method name right now.

Or, if you're trying to conform to iOS 7 design paradigms, your button should look like this if true:

: )

or, if false:

: (
 
Ok so what I need to do is have a boolean toggle from YES or NO when the button is clicked. Then from there, use the boolean data to tell the button image to change (such as if yes, display :) ...if no display :( ...)?
 
@mike360,

That's not it.

UIButton has the ability to be configured as a toggle button. @dejo is correct that UIControl has three relevant states, normal, highlighted, and selected. I believe that UIButton normally only uses normal and highlighted. However, you can still use setImage:forState: to set images for normal and selected.

You need a little bit of code that toggles the state between normal and selected when the button is tapped. You don't set the image, you set the state. I'm pretty sure the button is only in the highlighted state transiently while it's being tapped.

I did this in an app once but I can't remember which one or I'd show the code.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.