• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Using a UIButton as cell accessory view in plain UITableView
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Using a UIButton as cell accessory view in plain UITableView


  • Subject: Using a UIButton as cell accessory view in plain UITableView
  • From: Tino Rachui <email@hidden>
  • Date: Thu, 3 Jun 2010 17:38:58 +0200

On the iPhone I have a plain table. Every cell should have a UIButton as accessory view. I configure each cell like this:

-(UITableViewCell*)tableView:(UITableView*)theTableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
...

UIButton *btnAdd =  [UIButton buttonWithType:UIButtonTypeContactAdd];
[btnAdd addTarget:self action:@selector(foo:) forControlEvents:UIControlEventTouchUpInside];

cell.accessoryView = btnAdd;
...
}

When somebody taps the add button in a row 'foo' will be called. In 'foo' what is a reasonable way to figure
out which row the tapped button belongs to? 'accessoryButtonTappedForRowWithIndexPah' is unfortunately not called
when an accessory view is set for the row at indexPath.
None of the possible solutions I have in mind for this looks really appealing and clean to me and I'm afraid I
simply miss the obvious here.

So if anybody has any hint I'd be thankful.

TIA,
Tino






_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Using a UIButton as cell accessory view in plain UITableView
      • From: Kyle Sluder <email@hidden>
    • Re: Using a UIButton as cell accessory view in plain UITableView
      • From: Brian Slick <email@hidden>
  • Prev by Date: Re: Change the background colour of a window and toolbar
  • Next by Date: Re: Using a UIButton as cell accessory view in plain UITableView
  • Previous by thread: Re: Change the background colour of a window and toolbar
  • Next by thread: Re: Using a UIButton as cell accessory view in plain UITableView
  • Index(es):
    • Date
    • Thread