iOS App 开发问题汇总(五)
1.On iOS 7 and later, how do I take a snapshot of my view and save the result in a UIImage?
Solution:
1 2 3 4 5 6 7 8 9 |
|
Reference:View Snapshots on iOS 7
2.How to present a view controller on iOS7 without the status bar overlapping?
Solution:The easiest workaround I’ve found is to wrap the view controller you want to present inside a navigation controller, and then present that navigation controller.
1 2 3 4 |
|
3.代码创建 UITableView 时如何使用各种系统样式的 UITableViewCell?
Solution:
1 2 3 4 5 6 7 8 9 10 11 12 |
|