I have multiple rows and columns of data. But iPhone UITableView contains only single column and multiple rows. How do I display my multi column data following Apple's Human Interface Guidelines?
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- Popover segue to static cell UITableView causes co
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
If you are looking for something that looks like an Excel spreadsheet then I would recommend the
MDSpreadview
class. The source is available at http://mochidev.com/open. It looks pretty slick but bogs down if you have a lot of data to display.Other than that, you should probably just create your own
UITableViewCell
. It's pretty easy with the new Storyboards of iOS5 and you can handle millions of cells of data.You probably need to build it by your own, or use a library, like UIGridView. (I'm the creator)
You can learn the source code of UIGridView. It's really short.
For those interested, I just updated MDSpreadView to be much faster, and it supports practically an unlimited number of rows and columns (up until
CGFloat
stops being accurate to the pixel) with an API very similar toUITableView
. More info on my site