Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
6k views

UISwitch in a UITableView cell

How can I embed a UISwitch on a UITableView cell? Examples can be seen in the settings menu. My current solution: UISwitch *mySwitch = [[[UISwitch alloc] init] autorelease]; cell.accessoryView = ...
12
votes
1answer
5k views

iPhone UIButton with UISwitch functionality

Is there either a way to implement UISwitch with custom graphics for the switch-states? Or as an alternative the other way round, an UIButton with UISwitch functionality?
9
votes
3answers
5k views

iPhone: Save boolean into Core Data

I have set up one of my core data attributes as a Boolean. Now, I need to set it, but XCode keeps telling me that it may not respond to setUseGPS. [ride setUseGPS: useGPS.on]; What is the method ...
8
votes
3answers
13k views

UISwitch inside custom UITableViewCell not available

I have a UISwitch inside a custom UITableViewCell (the subclass of which I call RootLabeledSwitchTableCell). The cell contains a UILabel and UISwitch next to each other. I have a @property called ...
6
votes
3answers
4k views

How to create a UITableViewCell with a UISwitch and get the data?

I have a simple problem. I created a custom UITableViewCell that includes a UISwitch in Interface Builder. Question 1: Easier, better way to do it ? Question 2: When used in an UITableViewController, ...
5
votes
1answer
5k views

UISwitch - change from on/off to yes/no

does anyone know of a way I can change the text label for on and off to yes and no. I did it with ((UILabel *)[[[[[[switchControl subviews] lastObject] subviews] objectAtIndex:2] ...
5
votes
2answers
1k views

If I add a UISwitch control to each of my table view cells, how can I tell which cell it belongs to?

I have a UITableView with cells that contain a UISwitch control. It's similar to the table view in the iPhone's Clock app shown below... In my app's cellForRowAtIndexPath method, I create and ...
4
votes
2answers
264 views

New IOS5 UISwitch doesn't look disabled in a UITableViewCell

I'm placing a UISwitches in UITableViewCells and I try to disable it initially: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ... ...
4
votes
3answers
3k views

How to tell when a UISwitch inside of a UITableViewCell has been tapped?

How to tell when a UISwitch inside of a UITableViewCell has been tapped? My UISwitch is set up inside of the cell (generic cell) like this: UISwitch *mySwitch = [[[UISwitch alloc] ...
4
votes
2answers
10k views

Creating a UISwitch Programmatically

In a seemingly never ending effort to learn more about iphone development, I have been playing around with some of the source code available through apples developer website. The particular example I ...
3
votes
2answers
380 views

can we change the text on the uiSwitch

every one can we change the text which is on the UISwitch, i.e. On & Off. i have tried the following code but its crashing crashLog: Terminating app due to uncaught exception ...
3
votes
1answer
278 views

iPhone UIButton act like a UISwitch

I'm trying to create a pull out flap for my application. When you tap the image/button the first time, i want it to animate out to reveal the entire image. When you tap it again, i want it to animate ...
3
votes
1answer
494 views

Another custom UISwitch question

I have looked all over stack overflow, for the answer to this question, and i can only find ways which worked on 4.1 and below, but for 4.2.1 and above, i can't find a new way of getting the text of ...
3
votes
2answers
5k views

Changing of UISwitch text in iOS 4.2

I am trying to change the text in UISwitch. The sample from the website ( Changing the text on a UISwitch ) works fine but when I upgrade my xcode to 3.2.5 and iOS 4.2, the application crash when the ...
3
votes
3answers
238 views

retrieve the row table id when I click the switch?

I have a table view with switch control. My problem is: how can I retrieve the row table id when I click the switch? I can retrieve the switch state but not the id This is my code to get the state of ...
3
votes
1answer
832 views

Add custom action:@selector to UISwitch on TableViewCell

I have TableCellViewController for managing cells in my UITableView. Each cell has a label na UISwitch (dictTypeSwitch). A want to assign method to switch events so I can save the state of button. So ...
3
votes
3answers
1k views

Detecting if music is playing?

My app involves music(iPodMusic), and there is a UISwitch toggling play/pause. My goal is to be able to detect if music is playing, so that therefore the play/pause switch can say 'play' when music ...
2
votes
2answers
100 views

Animate a switch using an image sequence

I would like to know how to solve a problem I'm having. I have an image sequence that basically animates a switch. I'd like to implement this in iOS. How would you advise me to go for that? Maybe ...
2
votes
1answer
146 views

In UITableViewCell make UISwitch get the click then accesoryView if switch is on

I am trying to build a UITableViewCell that looks like this: Since I can't post an image yet I'll try to describe it by saying it's a label (left) with a UISwitch (middle) and the accessory (right). ...
2
votes
2answers
153 views

How to switch between different UIViewcontrollers

I want to write a custom switch that will be located two custom tabBar. Its structure is as follows - I want to use uiviewcontroller. Now I use the following code: - ...
2
votes
2answers
154 views

iPhone - Change the text on a UISwitch from “ON/OFF” to “TRUE/FALSE”?

What would be the best way to go about doing this? Is there a simple solution? Thanks.
2
votes
1answer
170 views

UISwitch and localization

i've a classic UISwitch with ON/OFF options. Changing language on the device, i will have 1 / 0, but i want still ON/OFF, i've searched but i don't find any "fast" solution, have you any ideas? ...
2
votes
3answers
495 views

How do I disable a UISwitch?

Is this possible to disable a UISwitch? I do not mean putting it in an OFF state, I mean disabling user interaction, and having it appear gray. In my app I have two conditions if (condition == ...
2
votes
3answers
974 views

I want to create custom UI-SWITCH controller in iphone sdk

I want to create Custom UISwitch button, what will i do?
2
votes
2answers
788 views

UISwitch in a custom accessoryView

I have my UITableViewCell subclass in which I use an UISwitch as accessoryView in this way: mySwitch = [[UISwitch alloc] initWithFrame:CGRectZero]; self.accessoryView = mySwitch; and all is ok! The ...
2
votes
3answers
416 views

UISwitch, something similar for Mac?

Im sure most of you are familiar with the UISwitch on iOS. Is their any existing project trying to implement something like this on Mac? If not, where would one start to make one? I see them ...
2
votes
2answers
3k views

Handling multiple UISwitch controls in a table view without using tag property

I have a table view controller with multiple UISwitch controls in them. I set the delegate to the table view controller with the same action for all switches. I need to be able to determine what ...
2
votes
3answers
358 views

Triple UISwitch

I want to create a custom UISwtich with three positions. Is it possible?
1
vote
2answers
38 views

how to change text of UISwitch from 0,1 to on,off

hi all I added the UISwitch using interface builder but the heading of UISwitch come as 0/1 I want to convert it into on/off , please help how can I do this?
1
vote
2answers
38 views

Can you make toggleClass animation without jQuery UI?

Can I make this: http://jqueryui.com/demos/switchClass/default.html without jQuery UI? Basically I have a simple site which the body has a class named: '.bgone'. .bgone has background color: #ccc ...
1
vote
3answers
102 views

Using UISlider as UISwitch (Two state object)

Note: I'm using Monotouch. I'd like to know if there's a way to use UISlider object as an UISwitch object. I mean... I want to use the UISlider object only in two states (100% or 0%), and I want to ...
1
vote
3answers
72 views

How to prevent a UISwitch from changing state?

I have a UISwitch that is defined in an .xib file. The event that I'm connected to is "Value Changed". I want the following behavior (essentially warning the user that this function is available in ...
1
vote
1answer
115 views

UISwitch looks strange on IOS5 simulator and device

When i add UISwitch in IB it looks as it should. But when i run my app in 5.0 simulator or on 5.0 device, i get this: If i run it on ios4 simulator everything looks ok. This a large project that has ...
1
vote
2answers
118 views

MonoTouch Custom UISwitch color

I'm trying to set custom color for UISwitch. But thre is only background method:( Im wanna set custom color for "On" state. Is it possible without subclassing UISwitch ?
1
vote
1answer
69 views

UISwitch value getting recycled in UITableView

I have a UITableView with custom cell that I have built. In each custom cell, I have added a UISwitch. My tableview is only 100px tall. When I have 6 or more cells, it seems to start recycling the ...
1
vote
1answer
394 views

Programmatically access UISwitch size without adding component

In iOS5, it seems the width of a UISwitch have changed from 94px to 79px. I use the width of that component to calculate how for to the right, to place it in a UITableViewCell. Is there a way to ask, ...
1
vote
3answers
101 views

How to change UISwitch name in iphone? [closed]

Possible Duplicate: How to customize UISwitch button in iphone? How to change name of UISwitch (like on,off) i am creating UISwitch in Xib so i want to change the name like yes or no.
1
vote
2answers
399 views

Re-create UISwitch

My client doesn't like the gloss on the iOS 5 UISwitch, and wants me to create a non glossy version using some images. However I don't know how I would go a bouts this. I have created a UIView ...
1
vote
2answers
104 views

UITableView Cell is regenerating

I have UITableViewCell with UILabel and UISwitch. By default all UISwitch is set to off. Once I will turn on the switch and then scroll through table the switch value is set to default again,i.e.Off ...
1
vote
1answer
140 views

Setting UISwitch state in UIPopoverController

I would like to reset the state of a UISwitch in a UIPopoverController from my MainViewController. I assume a simple popoverView.switchName.on = NO; wont do the job (as it doesnt seem to be ...
1
vote
1answer
229 views

Save and Load UISwitch state

I want to save the swtich state and load it when the program restarted. [[NSUserDefaults standardUserDefaults] setBool:switchControl.on forKey:@"switch"]; [[NSUserDefaults standardUserDefaults] ...
1
vote
1answer
578 views

How to detect whether UISwitch is on/off?

I am trying to detect when a UISwitch it on / off // .h IBOutlet UISwitch *privateSwitch; @property (nonatomic, retain) IBOutlet UISwitch *privateSwitch; //.m @synthesize privateSwitch; ...
1
vote
2answers
270 views

Why does my UISwitch crash when it is a tableView.cell.AccessoryView

This is a problem while using MonoTouch. I'm trying to have a TableView with cells that have a UISwitch, but the app crashes when the switch is clicked. Just for testing, I also created a switch that ...
1
vote
1answer
165 views

Prompting AVAudioPlayer to play based on a timer

I am trying to setup a stopwatch alarm that is enabled via UISwitch. I want the alarm to be triggered after an x amount of secs after the timer has started. I have an ivar int variable (timerCount) ...
1
vote
1answer
421 views

Is MonoTouch can change UISwitch's label text?

As the title said, I was wonder if MonoTouch can change UISwitch's label text. Many topic talk about Object C's implements, and something about "catagory", who can help me?
1
vote
2answers
148 views

How to know which row is switched on in UITableView

I have a UITableView myTable which has UISwitch for every row. How can I find the row number of the table for which the switch is changed in my switchChanged method? - (void) ...
1
vote
2answers
3k views

How to create custom UISwitch? [closed]

Possible Duplicate: Changing of UISwitch text in iOS 4.2 Hi, I want to change the text of UISwitch to YES/NO. Is it possible? I have seen some sample codes but nothing seems to work in ...
1
vote
2answers
139 views

Iphone NSUserDefaults Trouble?

In my app, I have an options page. It has 3 things you can change: a switch for inverted controls(it is a shooter game), a volume slider for the effects level, and a volume slider for the music level. ...
1
vote
1answer
219 views

UISlider or UISwitch with a stationary mask?

I've found a gorgeous switch that I'd like to implement in iOS. The artist (@jasonlong) has kindly shared his PSD of the components at 365psd.com, along with a crafty little javascript as a demo. ...
1
vote
2answers
676 views

Change the state of UISwitch with animation programmaticaly

I have a UITableView with some cell's that containt UISwitches: UISwitch* actSwitch = (UISwitch*)[cell viewWithTag: SWITCH_TAG]; [actSwitch addTarget: self action: ...

1 2 3 4