Jon:

UISwitch can not be customized. This question was asked a few weeks ago, and I 
recommended http://osiris.laya.com/projects/rcswitch/ by Sascha Hoehne and 
Robert Chin. 

If you wish to use a UIButton as a toggle, just change the button's image 
property to alternating states, as in:

if (condition)  
{
         [self.button setImage:offButtonImage forState:UIControlStateNormal];
    condition == NO;
}
else 
{
    [self.button setImage:onButtonImage forState:UIControlStateNormal]; 
    condition == YES;
}

GoodLuck.

Roger Dalal
Assembled Apps


On Apr 29, 2011, at 7:29 PM, Jon Sigman wrote:

> Is there a straightforward way to change the text on the UISwitch ("ON" and 
> "OFF") to something else? Alternatively, is there a way for a UIButton to act 
> like a toggle (it stays highlighted until touched again)?
> iOS 4.3
> _______________________________________________
> 
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
> 
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
> 
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/cocoa-dev/roger.dalal%40gmail.com
> 
> This email sent to roger.da...@gmail.com

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to