I have a table view wherein the number cells are not fixed and will keep on changing. I have to show two action buttons after my last cell in the table footer. How can I place them properly after my last cell? I know the pixel spacing between last cell and these buttons. Any code sample will be really helpful.
Share
You could always add two buttons to the final cell.
If you want to customize existing buttons you need to set it’s tag to something unique, i.e.
firstButton.tag = 100and then set firstButton byfirstButton = (UIButton *)[cell viewWithTag:100];. Make sure you definefirstButtonso that it’s in scope!Hope this helps!