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

  • Home
  • SEARCH
  • 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 7753245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:00:35+00:00 2026-06-01T12:00:35+00:00

I have two UILabels, one above the other. The top one has fixed size

  • 0

I have two UILabels, one above the other.
The top one has fixed size (2 Lines), and the bottom one can expand (0 lines).
The text which I using for the labels can be short and sometimes it can be very long.
How can I calculate the first UILabel max string length without cut a word in the middle?

//Here is the code which create the 2 labels.

    titleView = [[UILabel alloc] initWithFrame:CGRectMake(70, 0, 200, 50)]; 
    titleView.numberOfLines = 2;

    titleView2 = [[UILabel alloc] initWithFrame:CGRectMake(20, 50, 250, 100)];
    titleView2.numberOfLines = 0;
  • 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-06-01T12:00:37+00:00Added an answer on June 1, 2026 at 12:00 pm

    I’ve solved the problem with this method:

    + (int)getSplitIndexWithString:(NSString *)str frame:(CGRect)frame andFont:(UIFont *)font
    {
        int length = 1;
        int lastSpace = 1;
        NSString *cutText = [str substringToIndex:length];
        CGSize textSize = [cutText sizeWithFont:font constrainedToSize:CGSizeMake(frame.size.width, frame.size.height + 500)];
          while (textSize.height <= frame.size.height)
          {
              NSRange range = NSMakeRange (length, 1);
              if ([[str substringWithRange:range] isEqualToString:@" "])
              {
                  lastSpace = length;
              }
              length++;
              cutText = [str substringToIndex:length];
              textSize = [cutText sizeWithFont:font constrainedToSize:CGSizeMake(frame.size.width, frame.size.height + 500)];
          }
          return lastSpace;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two UILabels in a XIB file, one on top of the other,
I have two UILabels. that I want to overlap one atop the other. Call
How can I have one UILabel with two different font color/type? I don't think
I have a UILabel with space for two lines of text. Sometimes, when the
The above is a UITableViewCell containing two UILabels. The cell has a transparent background
Have two actionsheet buttons and one modalviewcontroller on mainviewcontroller in application. Now for two
I have two php pages. Page 1 contains one form which i submitted with
Currenly in my cellForRowAtIndexPath function i have subclassed two UILabels that holds the values
As described in the title, I have an app with two UILabels under each
I have a TableViewController that is using a grouped Style and has two(2) sections.

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.