UISegmentedControl is a class from UIKit in Apple iOS framework. A UISegmentedControl object is a horizontal control made of multiple segments, each segment functioning as a discrete button.
1
vote
0answers
30 views
Text not centering on custom UISegmentedControl
So I created a custom UISegmentControl and it looks great, but the labels of the first and last buttons are not centering. I was told to put this in the implementation file to fix it, but it doesn't ...
0
votes
0answers
21 views
Set the background color of a UISegmented Filter Control Slider according to it's current value. Objective C
I found this really cool project on Github which I'm in the development process of using in my app. Here is the link to the Github Project. I found a way to handle the value changed but now I keep on ...
0
votes
2answers
29 views
ViewControllers with segmented control performance issue
I have a list of items in a UITableView, when an item is selected I open a ViewController with a segmented control that is supposed to switch between three different ViewControllers.
I am using a ...
0
votes
0answers
3 views
UISegmentedControl custom selection color in inputAccessoryView
I created a little category for UISegmentedControl which sets the tint color of the selected segment:
@implementation UISegmentedControl (selectedColor)
- (void)setSelectedSegmentColor:(UIColor ...
0
votes
1answer
35 views
UISegmentedControl - Last Segment does not select easily
So I am using a UISegmented Control as shown
The last segment the "5" is incredibly hard to hit with my finger. I noticed from the simulator using a cursor that about only half of the segment will ...
0
votes
1answer
76 views
Unable to scroll to the bottom of UITableView
I know there are many answers of the question in the forum but they didn't help me. Here is my problem.
I have UITableView with UISegmentedControl. In the one segment there is less data than in the ...
0
votes
0answers
15 views
Localization broken for UISegmentedControl in Xcode 4.6
Localization from storyboard for UISegmentedControl seems to be not working with the Italian language.
It's fine if I localize it programmatically, setting all its titles with NSLocalizedStrings.
Can ...
0
votes
0answers
29 views
UISegmentedViewController cutting off view
I am running into a weird problem. I am using a UISegmentedControl to switch between two views. When the UISegmentedViewController comes on screen, the default view(view1) is loaded.View1 looks ...
0
votes
0answers
34 views
Customise UISegmentedControl as UITabBarController
I'm trying to create a UISegmentedControl that has same the function as UITabBarController.
However, I already have a UITabBarController in my view controller and it will be awkward if I have 2 tab ...
0
votes
1answer
27 views
Detect second click on a segment
According to the documentation, the event which should related to UISegmentedControl is value changed. Assuming I have a segmented control with previous and next, in my case I should be able to click ...
5
votes
3answers
102 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 ...
2
votes
2answers
79 views
UISegmentedControl not responding
I'm adding a UISegmentedControl to the foot of a grouped UITableView programmatically. It's showing up fine, but when I tap on any of the options, they don't highlight. What am I doing wrong here? ...
0
votes
1answer
46 views
customize UISegmentedControl with resizableImageWithCapInsets
there.
I am customize UISegmentedControl with custom background images.
Code is like this:
UIImage *segmentSelected = [[UIImage imageNamed:@"segcontrol_sel.png"] ...
0
votes
0answers
41 views
Should I use segmented control to switch views?
I have an app originally coded as a tab bar app. One tab has a map view and the other has a table view to display store locations.
The client saw the cvs pharmacy app and decided he wanted that look ...
0
votes
2answers
74 views
Setting titles for a UISegmentedControl from an NSArray
I tried to subclass UISegmentedControl.
I'm passing an NSArray from the view and try to set the titles for the UISegmentedControl from that NSArray.
I used the initWithArray method but it is not ...
0
votes
0answers
18 views
UISegment Controller Clear Background
I have a segmented controller that works just great. However for pure design purposes, is there a way to make the color clear / transparent and only show the labels like the image example? I mocked ...
0
votes
2answers
72 views
UISegmentedControl won't change value
I am trying to create a UISegmentedControl programatically. I have a UIViewController in the storyboard with nothing in it.
.h file
UISegmentedControl *segmentedControl;
NSString ...
0
votes
1answer
55 views
Using a segmented control to switch collection views
On iOS what would be the correct / most efficient way to switch collection views using a segmented control located in the navigation bar?
0
votes
1answer
39 views
segmented control give a number value
I have a segmented control and when the user selects the first segment I want it to pass the number 0, second segment 1, and third segment 2. So that I later can do like this:
NSString *submitFormJS ...
0
votes
1answer
43 views
Change label data when view changes
I need help on populating my uilabels. I have three uiviews and each have five labels. I need to change the labels data when the view changes, i am using uisegmentedbutton to change views..What would ...
0
votes
3answers
30 views
Getting the id value corresponding to the selectedsegment for segmentControl iphone
First of all sorry for the title.
I have one segment control in my app.The titles of the segments are fetching from the server and setting accordingly(ie YES and NO).
There is also one corresponding ...
0
votes
1answer
43 views
UINavigationController with UISegmentedControl in AppDelegate to switch rootviewcontroller of UINavigationController
I would like to create an app with a navigation controller as a window root view controller and a segmented control in a title view of the navigation controller to switch its root view controller
...
1
vote
1answer
52 views
Trouble saving segmented control with core data
I thought this issue would be a simple one to over come, but it's providing to be a little harder and frustrating.
I'm using UISegmentedControl to make a selection and then saved to core data with a ...
0
votes
3answers
44 views
How to change the selected segment text colour to highlighted state after selection
I want to set the selected segment text colour as white and it will be in highlighted state.If I select the other segment then the selected segment text colour should be highlighted and it should be ...
0
votes
3answers
74 views
UISegmentedControl wrong dividerImage
I am custumizing the all the segmented controls in my app with the following code.Initially i set the selected segment to index 2.
Everything works perfect in IOS 6.While i was testing the app on ...
0
votes
0answers
5 views
How make value persistance of variables through different views?
This could be a very basic question that I missed while I am learning. I hope I will get right direction from here.
Here is the scenario :
I have two views, first one is having segmented control on ...
0
votes
0answers
20 views
Change html drop down value with UIsegmented control
Im using a hidden UIWebView with authentication textFields. However, on the website, you have to select what type of user you are from a drop down. I´ve created a segmented control on my view that I ...
0
votes
2answers
70 views
UISegmentedControl with tintColor doesn't show selection?
Once you set the tintColor on a UISegmentedControl when it has a segmentedControlStyle of UISegmentedControlStyleBar it no longer shows which button you select. The valueChanged event still fires, but ...
0
votes
2answers
163 views
UISegmentedControl inside title of UINavigationBar looks unformatted
I'm trying to add a UISegmentedControl within the title of a UINavigationController. However, the formatting looks like this (i.e. its ugly).
When I want it to look like this (pretty :). Can anyone ...
1
vote
4answers
136 views
how to set back default UISegmentedControl appearance?
i have set the appearance of UISegmentedControl using following code,
UIImage *segmentSelected = [[UIImage imageNamed:@"Segment_Unselected.png"]
...
0
votes
1answer
124 views
UISegmentedControl to display different view controllers
I was just asking myself if it is alright to use a UISegmentedControl to pass from one view controller to another (One UISegmentedControl in each view controller, more precisely).
It is told in the ...
0
votes
2answers
97 views
Style Qt radio buttons to look similar to UISegmentedControl?
How can I style Qt radio buttons to look like IOS's UISegmentedControl? Here's an example of that control:
A similar example from the web, that also demonstrates the desired behaviour of the ...
-1
votes
3answers
82 views
UISegmentedControl selector not working
I have a calls Called Modal that I am running the following code in.
- (void)createAccessoryView
{
CGRect frame = CGRectMake(0.0, self.frame.size.height, self.frame.size.width, 44.0);
...
0
votes
2answers
250 views
UISegmentedControl in the Navigation Bar with the Back button
I'm adding a UISegmentedControl to the Navigation bar programatically where the titleView should be. But as Apple docs have mentioned under titleView, This property is ignored if leftBarButtonItem is ...
0
votes
1answer
111 views
UISegmentedControl`` crash Xcode on Navigation Item
I am Trying to put UISegmentedControl on theNavigation Item but it crash my xcode .. I simply added the UISegmentedControl in the Interface Builder file(IB) file and then in viewDisAppear
.h
...
0
votes
0answers
90 views
Giving Navigation Bar Button functionality over segmented views
I am having a problem with my iOS application that has Kal integrated into the application.
Heres an image of whats going on.
If you notice the classes I have implemented on the left part of the ...
0
votes
1answer
38 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
2answers
124 views
UISegmentedControl divider bug
I'm encountering a strange bug with my UISegmentedControl dividers. When I drag my finger away, the segment loses its Highlighted State image, but the divider retains it. I need to drag about 100px ...
1
vote
4answers
299 views
UITableView and UISegmentedControl
I am new in iPhone developing. I have one UITableView with three Section and each Section has three rows. And I have one UISegmentedControl with three index.the tableview is hidden initially .when I ...
0
votes
0answers
25 views
My customized UISegmentControl is throwing a CGImageCreateWithImageProvider
Here is my code to create a customized uisegmentcontrol:
UIImage *selectedImage = [[UIImage imageNamed:@"divider_active.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(15, 6, 15, 6)];
UIImage ...
0
votes
1answer
118 views
add two background image for selected and unselected UISegments iphone
I have two segment buttons (1 and 2) I want to add a background image one for selected segment and another image for unselected segment.How can I do that?
Here is what I have so far,should I set the ...
1
vote
2answers
179 views
Add a UISegmentedControl as the titleView in a UINavigationController
I'm trying to add a UISegmentedControl programatically as the titleView in a UINavigationController. But it did not show up. Upon further investigation I found out that the titleView property is ...
0
votes
1answer
191 views
Android Segmented Radio Button
I have imported this method from https://github.com/makeramen/android-segmentedradiobutton.
how to display a Views(may be Listview,Imageview or whatever) when each button is clicked.
here is the ...
0
votes
2answers
37 views
Attempting to add GCCelendar into my app
I have an app with 5 tab bars, the 3rd one is where i want to put the calendar in.
I have a seperate class for the implementation of the tab bar but how do i go about implementing the calendar into ...
0
votes
1answer
108 views
UITableView UITableViewController Detail View and UISegmentedControl how?
I am currently adding Segmented Control in the viewDidLoad of the detail view and that is fine, but that means that I need to call back into TableViewController to act on it.
And realistically it is ...
0
votes
0answers
61 views
iOS 5.0 UISegmentedControl setting widths and appearance
What I have tried
I have a segmentedControl which I am customizing by setting the appearance properties and width.
Problem
iOS 5.0 was overwriting the widths. Although I was using ...
0
votes
1answer
80 views
UISegmentedControl buttons stop working
My iOS app has a form with about a dozen fields and I wanted to add "Previous"/"Next" buttons above the keyboard to help users move between fields. I have something like this:
for (UITextField *t in ...
1
vote
1answer
340 views
UISegmentedControl background image strange behavior
I'm working on an iOS project and came across this strange issue. I have a UISegmentedControl element of bar style. It has 3 segments. The segments have fixed sizes of 80. I also have 3 images with ...
0
votes
0answers
87 views
Passing UISegmentedControl Index value from one view to another
I am creating an application that gives the user the option to change a value that then determines via an IF statement which code is to be run. The problem i have is that the UISegmentedControl that ...
3
votes
2answers
90 views
UISegmentController and UIViews
I would like to know how to correctly operate with two views by UISegmentController.
Now I have two UIViews and UISegmentController and procedure changeView:
- (void)changeView:(NSInteger)index {
...


