You use the UISwitch class to create and manage the On/Off buttons you see, for example, in the preferences (Settings) for such services as Airplane Mode. These objects are known as switches. The UISwitch class declares a property and a method to control its on/off state. As with UISlider, when ...

learn more… | top users | synonyms

0
votes
0answers
140 views

Infinite loop in “if statement” in objective C

I am getting infinite loop like its checking if condition over and over . I am not sure how to debug it ...This is happening only in device in simulator its working fine . I have UISwitch in ...
1
vote
1answer
43 views

How to populate UITableView with UISwitch.

I am using Apple's Sample Code TheElements for this question. The project can be found here: TheElements I would like to know how to populate the "Grouped by State" UITableView using a UISwitch. I ...
-4
votes
0answers
52 views

If method when switch is off [closed]

I have an if method that i want to execute when a switch is off. The method still executes even when the switch is on. if ([mySwitch isOn] == NO) { //My code } I have also tried if (!mySwitch) { ...
1
vote
1answer
28 views

Implementing a custom UISwitch using a library - what am I doing wrong that's causing the size issues?

I'm using BMXSwitch to implement a custom UISlider, hopefully in the end looking something like this: Where the animation is pretty much identical to the default UISwitch, where the knob moves, ...
0
votes
0answers
27 views

Assigning property of NSManagedObject causes UISwitch to revert

I've encountered a very odd bug. The view in question is a UITableView, where each cell contains a UISwitch as its accessoryView. I have it wired up so that a change in value triggers - ...
0
votes
1answer
31 views

indexPath returns null for Custom UISwitch in tableView cell?

So technically it's not a UISwitch, but rather a UIView with a custom class that behaves just like a UISwitch (https://github.com/domesticcatsoftware/DCRoundSwitch) I'm using this DCRoundSwitch on ...
0
votes
0answers
27 views

How to hide a UITableView cell upon an UISwitch ValueChanged event?

Im trying to hide a cell in a UITableView upon a value changed event received from an UISwitch. Heres my current IBAction for this. It does actually work, but somehow only after the third time the UI ...
0
votes
2answers
50 views

How to make Sharp Corner Switch in iOS

I am a beginner ios developer. The UISwitch is round corner by default in iOS 6, seems no way to change it in storyboard. And I don't know how to coding a sharp corner switch.
1
vote
3answers
35 views

ObjectiveC UISwitch set default to OFF

How can I set the default value of my UISwitch object to Off? I am probably missing something obvious?
0
votes
2answers
49 views

How do I make a cell in the middle of a tableview invisible?

Ok I have an app that looks like this: What I need is to grey out or deactivate the cell at indexPath.row = 3, which is the "Off grid Est Daily Consumption" cell depending on the value of the ...
0
votes
3answers
53 views

Positioning UISwitch in UITableViewCell to right

may I know how to positioning the UISwitch in UITableViewCell to right? I'm not using storyboard to add the Switch Button! Here is the code in controller.m - (UITableViewCell ...
1
vote
2answers
30 views

Custom UISwitch Compatible with all versions of iOS

I want to make custom UISwitch for project. I want to change text as well as background. I gone through multiple posts on stack-overflow for this. Some where just image drawing or core graphics ...
0
votes
2answers
57 views

Creating a UISwitch with custom images on it, and a custom height in width. Trying to use RCSwitch, is there a better way?

I'm trying to use RCSwitch but it's not working unfortunately, as it seems limited to the standard height of 29px. My switch is 35px high (it simply works better for my app). It looks like this: My ...
2
votes
1answer
144 views

Unable to compile project in android studio Gradle: invalid symbol: 'switch'

I am using Android studio to compile the project. Project min SDK is 14 and target is 17. I am using this code. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
0answers
101 views
+50

android custom Switch widget for SwitchPreferenc

I search around stackoverflow and find next related topics: How can i style an Android Switch? Custom switch widget in Android 4 Set switchStyle - get error resource not found - why? I also find ...
-2
votes
0answers
44 views

Have UIView Remember UISwitch Selections - iOS

I have a UIView in my app called SettingsViewController. I have multiple settings that are toggled with UISwitch. When I go into another view in the app however and return back to ...
0
votes
1answer
64 views

Detect if music is playing or not and turn switch in off or on

I am creating this app were there is background music playing, but I want it so the user can stop the music with a UISwitch if they dont want background music. I already have the code working for the ...
0
votes
1answer
15 views

UISwitch is firing UISwipeGestureRecognizer

I'm setting a gesture recognizer (swipe right) on a view like this: [self.currentViewController.view addGestureRecognizer:self.swipeRecognizer]; However, the view has some UIControls that respond ...
1
vote
2answers
249 views

Customize uiswitch image properly?

I have an UISwitch in my iOS 6 app, that's on and off image is customised. self.testSwitch.onImage = [UIImage imageNamed:@"on"]; self.testSwitch.offImage = [UIImage imageNamed:@"off"]; I use 77 ...
0
votes
2answers
41 views

Disable UITableView Section with UISwitch

I have a static UITableView with a grouped layout. In the first section there is just a UISwitch with which I want to disable/enable the second section. Does anyone know how to do that? If the switch ...
4
votes
3answers
257 views

Custom UISwitch with image

I need to implement a custom switch in a project. Currently what I have found is that we cannot alter with UISwitch in way to implement as shown in below image. I've followed posts and googled through ...
0
votes
0answers
53 views

iOS programming - sharedInstance & UISwitch

I got problem. I have two xib, first - Table View, Second - Settings. In Table View in title of Navigation Bar I show how many rows in uitableview. Here is Code: - (NSInteger)tableView:(UITableView ...
-1
votes
2answers
87 views

Uiswitch in uitableviewcell reset when scroll up or down?

I have a problem with my UISwitch inside a UITableViewCell. When I change the value of one switch then scroll up or down all switches are messed up. I use an array to store state for each switch due ...
0
votes
4answers
61 views

Content add subview not working?

How is your day , Hope every thing went well My question is that I have uiswitch in uitableviewcell . However when i used contentview to add the switch as a subview in the cell it does not appear on ...
0
votes
3answers
98 views

UIswitch in a table cell reused

I have a problem with uiswitch in my UITableViewCell that whenever i change a switch value in a specific cell that belongs to a specific section. All other sections cells that have same inexPath.row ...
0
votes
2answers
68 views

iOS - UISwitch ignoring value from NSUserDefaults

I gave it all but I just can't figure this one out... need your help please. What I am doing: I have an app with a navbar and a tableview as the main screen. Up top in the navbar I have placed a ...
-5
votes
1answer
35 views

UITableViewCell alignment [closed]

Hello every one wish you have a wonderful day . My question is how to change the switch on UITableViewCell to be on the left side of the cell? I have declared a switch on cellForRowAtIndexPath ...
0
votes
1answer
115 views

Changing the background image using UISwitch

Hi im working on a simple App which is changing the background image using an UISwitch. The problem is that on the device the pictures are in the original size. So I'm using 960 x 640 png's, should ...
0
votes
0answers
64 views

UISwitch display another text

Why in StoryBoard UIswitch show me text like ON/OFF, and when I use app in simulator I see wrong text | In .plist I have "Localization native development region" equal "en"
-2
votes
1answer
49 views

uiswitch in uitableview persistence when close and reopen the app? [duplicate]

I would like to ask about uiswitch in uitableview custom cell. if I have array that keeps state of each uiswitch in the table and update it on Change Value Event.However this changes are not ...
0
votes
3answers
101 views

UISwitch resets when scrolling up and down

I have a question about the event value changed for UISwitch, here is my problem in detail. in numberOfRowsInSection i have loop that calls the a data base method which return #of rows for each ...
0
votes
3answers
28 views

Adding a UISwitch to a UINavigationItem

I want to have a UISwitch in the right corner of a UINavigationItem, instead of a UIBarButton. Is this possible without subclassing the UINavigationItem?
0
votes
0answers
21 views

Trying to code a UIswitch to toggle between satellite view and standard view on MapKIt

Can anyone help me with this code. I've created a single view map based application with MKMapView *mapView But I just can't work out how to create and code a UISwitch to toggle between the different ...
0
votes
2answers
53 views

UISwitch only working one way

I have a UISwitch which I placed in my storyboard and have connected it to an outlet in my implementation file, and connected the valueChanged: method to the control event "value changed". However, it ...
0
votes
1answer
64 views

On/Off app sound with UISwitch.

I am developing a game in Xcode 4.6 and I want to implement the possibility for the users to enable and disable the sound of all the ViewControllers of the app. Please help.
0
votes
1answer
52 views

how to change UITableViewCell from outside tableview methodes

I have a UITableView that holds a UISwitch as a UITableViewCell accessoryView. I'm trying to create a method that responds to changes with the switches. Basically there should be only one valve open ...
0
votes
4answers
83 views

How to get answer from UISwitch which is in UIactionsheet

I am implementing Uiswitch inside my uiactionsheet , i've successfully placed it where i wanted to , but couldnt get the way to USE it. here's is my code: switchButton = [[UISwitch alloc] init]; ...
0
votes
2answers
99 views

Facing issue with UISwitch on/off

There are 6 switch controls in the screen. At one time only one switch should be enable.If 5th switch is on then, one label and one text field should be visible either it should be hidden. I am ...
0
votes
1answer
69 views

RCSwitch activates two times for one touch

I need to implement custom UISwitch and for this I'm using RCSwitch class (thanks to Ray Wenderlich and Robert Chin). So I added RCSwitch class to my project, connect graphic and it looks great, but! ...
1
vote
3answers
107 views

Add UISwitch to only one cell in TableView

Im trying to add a UISwitch to only one cell in my table view heres the code : - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { FormCell ...
0
votes
1answer
79 views

iOS How do I know if a user switches tabs? [duplicate]

I am using voice recognition within my app for 2 of the 3 tabs. These 2 tabs have switches inside of them that enable or disable the program from accepting voice input. What I would like to do is if ...
0
votes
1answer
40 views

Selecting between two options?

On the options screen of my current application I want to allow the user to select whether units are displayed in either "Metric" or "Imperial". I have looked at the Google Maps application and they ...
1
vote
0answers
364 views

Custom UISwitch Thumb Color with pattern image cause app crash (ARC)

I would like to customise my UISwitch Thumb by setting an image to his method "setThumbTintColor" but this cause app crash. If I simply set the color like that : [switch setThumbTintColor:[UIColor ...
0
votes
1answer
46 views

Return for the first view after I'm on the fifth view of an iOS application in Xcode

I'm fairly new to xcode, and am creating a single view application with five views (xib files). I am not using navigation controller or storyboard for two reasons. If I use Storyboard, I am forced to ...
0
votes
1answer
135 views

How to resize UISwitch button?

I want to resize my UISwitch button which is attach on UITableView. I found some help on google and did this successfully using CGAffineTransformMakeScale but with this I am getting an Issue when I ...
2
votes
1answer
98 views

UISwitch still slightly visible in UITableViewCell after table editing is complete

I have a strange issue with the editingAccessoryView of a UITableViewCell still showing after the table editing mode is switched off. Currently I am using a UISwitch as the editing accessory view and ...
0
votes
3answers
112 views

UISwitch state in viewdidload

So guys, i've been trying literally for the last week to get this to work. I have a app that i need a UISwitch to turn on a local notification. Standard for the switchs state is off, but i need to ...
-1
votes
2answers
121 views

UISwitch doesn't maintain its value when leaving the view controller

If I were to switch my UISwitch controller to "off" and leave the view controller and come back to the view controller it will show the UISwitch is "on" (default value) instead of "off". How do I save ...
0
votes
3answers
291 views

Changing UIButton background image on event

When a UISwitch changes from 'OFF' to 'ON', I want the background image of a UIButton to change. I have the following code: - (IBAction)switchValueChanged { if (Hard1ON.on) { UIImage ...
0
votes
1answer
37 views

Writing the state of a UISwitch to file

I'm trying to write the state of a UISwitch to file, so every time the app starts up it remembers whether it was on or off previously. -(IBAction) switchValueChanged { if (Hard1ON.on) { isH1 = ...

1 2 3 4 5 7