Questions tagged [uitableviewrowaction]

171 questions
0
votes
1 answer

Working with images in tableView:editActionsForRowAt:

Here is some trouble I am having working with a UITableView, more precisely using an image in tableView:editActionsForRowAt: Below follows my relevant code. It may be useful to say that the images I am using here are all square 70x70. func…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
1 answer

Trying to set a button with an image in tableView:editActionsForRowAt:

Working with Xcode 9.2, in a UITableView, I am setting a button with an image and no text when a cell is left swiped. Here is the precise code I am using: func tableView(_ tableView: UITableView, editActionsForRowAt indexPath:…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
1 answer

when left swipe a tableview cell to the left edge of the phone, it will auto trigger the delete UITableViewRowAction , how to disable this?

when left swipe a tableview cell to the left edge of the phone, it will auto trigger the delete UITableViewRowAction , how to disable this?
Xingou
  • 1,141
  • 1
  • 10
  • 20
0
votes
0 answers

Tap on TableViewRowAction just disappears action buttons

I have a UITableView which in every call has two action. When I tap on one of them their action not being called and just these action button disappears and cell comes back to its normal place. their action just being called when I tap and hold for…
Mehrdad
  • 1,050
  • 1
  • 16
  • 27
0
votes
0 answers

UITableView Separators and Disclosure Indicator missing after altering UITableViewCellActionButton

with the help of this Thread I managed to alter the font of my UITableViewCellActionButtons, but now the line-separator for each cell only gets visible after swiping the cell once and the disclosure indicators never show up. Here is my…
LarsGvB
  • 267
  • 3
  • 11
0
votes
1 answer

Swift 3 own font for UITableViewCellActionButton

this is my first question here, so feel free to point out anything I might be doing wrong ;) I'm currently trying to give the UITableViewRowAction-Buttons in my Application a custom font. For that I used David Seeks Answer here and put in in an…
LarsGvB
  • 267
  • 3
  • 11
0
votes
1 answer

UiTableviewCell with dynamic data init not loading correctly

in my cell data is loading but its is all messed up until i scroll down then if i scroll back everything format correctly. so when every i load listing which is uitableview data is messed up and as soon i start scrolling and scroll back up it gets…
Vix Hunk
  • 303
  • 4
  • 17
0
votes
1 answer

How to set the action of UITableViewRowAction

I customized my UITableCellDeleteConfirmationView to change the background color of the button in iOS 8 and above. Following this post, I implemented editActionsForRowAtIndexPath, commitEditingStyle and canEditRowAtIndexPath. -(NSArray…
maddie
  • 1,854
  • 4
  • 30
  • 66
0
votes
1 answer

Change the title of UITableViewRowAction swift 3

I am trying the change the title of UITableViewRowAction each time the user press on it like complete/incomplete, the code I wrote puts the checkmark but does not change the title, so the checkmark can not be removed: func tableView(_ tableView:…
Mireille
  • 637
  • 2
  • 12
  • 27
0
votes
1 answer

swift gesture recognizer tableviewcell get overruled

I am using AKSideMenu to have a menu which appears by swiping from right to left. In this side menu, I have a table view which cells are also swipeable (delete). Now I am not sure why the horizontal swipe on the cells is not get recognized. Here is…
Jan
  • 12,992
  • 9
  • 53
  • 89
0
votes
1 answer

Can't get Cell Swipe Actions to work

It's been awhile since I've made a fool of myself here, so here goes again as I'm still trying to learn and feel as though I'm chasing my tail on this project. With that said, ultimately I would like to get Jerkoch's SwipeCellKit to work, but not…
0
votes
0 answers

UITableViewCell in Edit mode in iOS

I am working on screen where user will be available to remove items to by swipe left (default tableView behavior). When user opens that screen I want to show him that he is availabe to remove items to swipe. So, I want to show "Delete button" in the…
dsfs
  • 189
  • 1
  • 3
  • 10
0
votes
3 answers

ActivityViewController Won't show any options to share? Swift - 3

I am trying to share my saved events in core data from tableViewCell but whenever I press on share, it displays the activityViewController but won't give me any options to share it with. I tried running it on my iPhone as well and same issue…
0
votes
0 answers

UIActivityViewController won't show any options to share

I am trying to share something from tableViewCell but whenever I press on share, it displays the activityViewController but wont give me any options to share it with. I tried running it on my iPhone as well and same issue appears. override func…
0
votes
0 answers

UItableViewCell with varying UITextfields and UILabels

I have two labels(total and price) and two textfields(quantity and type) in a cell.If I change the quantity textfield corresponding total label should change. And i am doing it. But the quantity functionality is taken only for last indexpath.row and…