Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6005025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:20:43+00:00 2026-05-23T01:20:43+00:00

Is there anyone who can teach me how to show an UISegmentedControl object in

  • 0

Is there anyone who can teach me how to show an UISegmentedControl object in vertical direction, instead of in horizontal direction?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T01:20:44+00:00Added an answer on May 23, 2026 at 1:20 am

    +1 for Ben’s answer, although rotating the segmented control also rotates the text inside. Never fear! We just have to rotate the inside labels, like so:

        NSArray *arr = [segmentedControl subviews];
        for (int i = 0; i < [arr count]; i++) {
        UIView *v = (UIView*) [arr objectAtIndex:i];
        NSArray *subarr = [v subviews];
            for (int j = 0; j < [subarr count]; j++) {
                if ([[subarr objectAtIndex:j] isKindOfClass:[UILabel class]]) {
                    UILabel *l = (UILabel*) [subarr objectAtIndex:j];
                    l.transform = CGAffineTransformMakeRotation(- M_PI / 2.0); //do the reverse of what Ben did
                }
            }
        }
    

    Swift 2 version:

    for view in segmentedControl.subviews {
        for subview in view.subviews {
            if subview.isKindOfClass(UILabel) {
                subview.transform = CGAffineTransformMakeRotation(CGFloat(-M_PI / 2.0))
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In wicket 1.5, ChildFirstHeaderRenderStrategy and ParentFirstHeaderRenderStrategy are being used. Is there anyone who can
is there anyone who can give me a vital and simple explanation im trying
Is there anyone who can answer this? It really doesn't make sense and I
Is there anyone who can help me with this problem. Have downloaded and configured
Is there anyone who can explain how hardware cursor works precisely? How does it
Is there anyone who can help me get the logical representation of a bitmap
Is there anyone who can help me with this. I am playing arround with
Is there any one who can point me to a Rails 3.2 multilingual starter
Can anyone who has used three.js tell me if its possible to detect webgl
Is there anyone who have encountered Processing Dirty Regions error in MyEclipse? Actually everytime

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.