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 8816025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:31:13+00:00 2026-06-14T04:31:13+00:00

I have a UILabel in Mainclass, now I want to Assign it text by

  • 0

I have a UILabel in Mainclass, now I want to Assign it text by Subclass function. My question detail code is available here link Now I want that when I click on any Cell of my UITableview (which is my Subclass) its text assign to UILabel in Mainview. my Code is below which I tried so for

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
NSString *cellText = selectedCell.textLabel.text;
NSLog(@"MY row Text:%@",cellText);

// Now here I don't know how we can pass this text to UILabel which is in my mainclass

}

My Below image also helpful for understanding my problem

enter image description here

  • 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-14T04:31:14+00:00Added an answer on June 14, 2026 at 4:31 am

    You can pass label on to the subview class when you create it.

    In the main view class declare:

    @property (nonatomic, strong) UILabel *mainLabel;
    // or if no ARC
    // @property (nonatomic, retain) UILabel *mainLabel;
    

    Then on the .h for the subview, declare:

    @property (nonatomic, weak) UILabel *myAccessToMainLabel;
    // or if no ARC
    // @property (nonatomic, assign) UILabel *myAccessToMainLabel;
    

    When the subview is created, assign the main view’s Label to the subview’s myAccessToMainLabel. Then assign the label in the subview code. You can always pass around properties in Objective-c.

    Edit:
    When you create the subview, assign mainLabel to subview’s reference iVar from the code that create it.For example, if the main create the subview then:

    MySubViewClass *mySubView = [[MySubViewClass alloc] initWithNib:@"MySubViewClass" ...];
    // or any variety of init
    mySubview.myAccessToMainLabel = mainLabel;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UILabel called optionsDisplayerBrushSizeLabel who's text property I want to set to
I have a UILabel with some text on it, what I want is if
I have three UILabel with different font and I want to put then on
I have a UILabel with space for two lines of text. Sometimes, when the
I have a UILabel with right-aligned text that may vary from between three to
I have a UILabel control in a view. I want to detect touch event
I have a UILabel , and what I want is that when a user
I have a UILabel coded programmatically. I want to change the size of the
I have a UILabel with background color as grey. I want a blinking effect
I have a UILabel in my view. I want to remove the UILabel if

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.