How to fully customize a table view

I want to set up my tableview, for example tipulator application for iphone. alt text

And heres my application:

alt text

+3
source share
4 answers

While others are right in suggesting ways to subclass UITableViewor its components, this screenshot does not look as shown UITableView.

I assume that they simply draw custom images in the background and check for specific areas for taps. What you need to do is read the drawing methods, as well as intercept taps and touches.

+1
source

UITableViewCell , "".

XCode "File- > New File". "Cocoa Touch Class" "Objective-C Class" - "" "UITableViewCell".

XIB, IB .

UITableView UITableViewCells.

0

Source: https://habr.com/ru/post/1772914/


All Articles