Putting two buttons into one UITableViewCell
Hey guys, this is driving me absolutely crazy! Been searching for hours and can't seem to figure out a solution. Any ideas how to do something like this:
Notice how there are two buttons inside of the tableviewcell, asnd notice how the grouped tableview has a background.
Any ideas?
Than开发者_如何学编程k you!
why you are thinking this is a uitableview.. you can easily implement this in uiscrolview.. just put a uiscroll view on uiview and put all the elements on it.. I have implemented several interfaces like you posted using uiscrollview... it will be very difficult to implement it in uitableview because .. when you touch on the tabs you need to open the new tab's interface and for that you have to reload the uitableview.. and manage all the interface.. which will be a pain ...
Thats basically a UIView
on a UIScrollView
, no UITableView
involved.
精彩评论