Questions tagged [uitableviewrowaction]

171 questions
0
votes
2 answers

How can I determine when a UITableViewCell's action buttons are shown and hidden?

Is there a delegate method or something that I can implement that allows me to do something when action buttons of my tableview cell is shown and hidden again?
Stephan
  • 881
  • 9
  • 24
0
votes
0 answers

Cannot Implement a Tableviewcell with Both an Image and Row Action with Parse

I've having trouble getting an image and a row action on a table view cell simultaneously. I can get a few different permutations to work (row action works but image only loads after row action activated, image loads but row action not available)…
0
votes
1 answer

change cell background color inside of UITableViewRowAction

I'm editing a table in iOS Swift 2 using UITableViewRowAction. If they select the action after the action button pops up, I want the current background of the whole cell (not the button popup) to change color. I try accessing it using…
Chaim Friedman
  • 720
  • 6
  • 24
0
votes
1 answer

Swipe to edit details using Segue

I'm new to IOS development and swift so I'm a bit confused. Building on this question Swipe To Edit Details Swift and Parse I have a table cell that I swipe and when I click edit, I want it to go to another page to edit the details. When i don't…
killerbarney
  • 947
  • 10
  • 24
0
votes
0 answers

Tableviewcell collapse and open while scrolling the tableView

Can any one please refer the @RetailMeNot application home screen which has the very nice animation, where the tableview cell will collapse and open with the scroll, Is there any SDK to do that similar part of animation. Thanks in advance... This…
0
votes
1 answer

custom delete image within UITabelViewCell only show half of itself

I want to custom my delete button of the UITableViewCell like these codes: let deleteAciont = UITableViewRowAction(style: UITableViewRowActionStyle.Normal, title: nil, handler: {action, indexpath in do some thing }); …
Boli-CS
  • 550
  • 1
  • 5
  • 14
0
votes
1 answer

How to select a UITableview Cell automatically?

I'm working on a Quiz App. I am getting questions from API. I'm using tableview for the Options. Now when the user selects the answer for the 1st question & presses Next comes to the previous question. Then the selected answer has to remain…
user5184878
  • 101
  • 3
  • 11
0
votes
3 answers

How to handle Table View cell with textfield

My tableview cell contain one label and one textfield, I am reusing my cell and it is working. but when I enter text in first textfield and hit return I want to go to next textfield, how can I handle that?
Bevan
  • 342
  • 2
  • 14
0
votes
1 answer

Cannot find a initializer for type "UITableViewRowAction"

How come it keeping showing me this message even though I type the right declaration of UITableViewRowAction? var shareAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Share", handler: {…
0
votes
1 answer

How can I give a particular behavior to a UITableViewRowAction?

I have a standard UITableView of items. Tapping a row will bring a DetailsViewController with details about the selected item and the possibility to use it through a UIButton. I have implemented the (NSArray *)tableView:(UITableView *)tableView…
Dree
  • 702
  • 9
  • 29
0
votes
4 answers

How select one item at a time ios sdk

I have a list of Option values displayed in a UITableView. Now I want user to select one item once. But currently the user can select all the option. What I want : Suppose I Have 5 radio boxes : 1 2 3 4 5 at a time user can…
0
votes
1 answer

Automatic scroll to the next cell in a PFQueryTableViewController in Swift

I have a PFTableViewController with PFTableViewCells in Swift. In each TableViewCell (with a height of 80% the screen size), there is a button. I would like that when a user select the button, there is an automatic scroll to the next TableViewCell.…
skifen128
  • 35
  • 3
0
votes
3 answers

editActionsForRowAtIndexPath was called but no action button is shown when the UITableViewCell is slided

I implemented editActionsForRowAtIndexPath and commitEditingStyle the swipe is working but no action buttons are shown on the UITableViewCell func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) ->…
Abdelrahman
  • 997
  • 2
  • 10
  • 24
0
votes
1 answer

UITableViewRowAction change backgroundcolor on press

I created an instance of UITableViewRowAction in -(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath and I have a handler block when this row action is triggered: handler:^(UITableViewRowAction…
Janosch Hübner
  • 1,584
  • 25
  • 44
0
votes
2 answers

set cell.textLabel.textColor causes other section's color inconsisitent in IOS

Im new to IOS development, and now I have issues in cell.textLabel.textColor what I did is implementing a tableview, and set color according to the section, as I show below, I have 4 section each has 7 rows. As you can see I only set text…
Qing
  • 1,401
  • 2
  • 21
  • 41
1 2 3
11
12