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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:39:22+00:00 2026-05-27T04:39:22+00:00

i am a newbie to iphone development. I am working on a project where

  • 0

i am a newbie to iphone development.

I am working on a project where i am having a UItableview , i placed a button in each row .
Now my UItableView have a cell.textlabel, detailLabel, and a button placed programatically.

In cell.textlabel i have some values from json(each label have different values) and just at the right corner of each row , i placed a button.

Now i want the cell.textlable.text value of that row only whose button is pressed.

I am getting the same value for each button.
So , my question is , how to get labeltext value of the specific row whose button is pressed ?

  • 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-27T04:39:23+00:00Added an answer on May 27, 2026 at 4:39 am

    Solved like this:

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:  (NSIndexPath *)indexPath {
    
    
    
    static NSString *CellIdentifier = @"Cell";
    
    cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    
        UIButton *tableCellButton = [[UIButton buttonWithType:UIButtonTypeRoundedRect]retain];
        tableCellButton.frame = CGRectMake(200, 1, 80, 20);
        [tableCellButton setTitle:@"showing" forState:UIControlStateNormal];
        [tableCellButton addTarget:self action:@selector(shortcutBottonClicked:) forControlEvents:UIControlEventTouchUpInside];
        [cell addSubview:tableCellButton];
    
    
    
    }   NSDictionary *listing = [ self.temp objectAtIndex:indexPath.row];
    cell.textLabel.text = [listing  objectForKey:@"0"];
    
    
    
    
    return cell;
    

    }

    -(IBAction) shortcutBottonClicked:(id)sender{
    
      //this code solved the problem
     indexPath = [self.tableView indexPathForCell:(UITableViewCell*)[sender superview]];
    
    mlsid2 = [self.tableView cellForRowAtIndexPath:indexPath].textLabel.text;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just a newbie with iPhone development.. I just have a small problem but huge
i'm a newbie to iphone development. I'm doing a navigation-based app, and I'm having
I am a newbie on iPhone development. I have declared a variable on my
I'm a relative newbie on iPhone app development but have successfully created a tab
I'm a newbie doing Objective-C, coming from Flex/Actionscript development. I have an iPhone app
I am a newbie in iPhone development, doing my first app. I have some
I'm a newbie in iPhone development and now encounter a problem: I want to
I am newbie to iphone technology,right now i m working with an application where
hello all m a newbie to iphone development. I have 5 themes in my
i am newbie to iphone programming. I am working on an iphone project. My

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.