1. Hide the cell splitter line for the extra TableView
self.tableview.tablefooterview= [[Uiviewalloc]init];
2. Remove the returned words from the system
[[Uibarbuttonitemappearance]setbackbuttontitlepositionadjustment:uioffsetmake (0, -60) forBarMetrics: Uibarmetricsdefault];
3. Hide navigation when sliding
Self.navigationcontroller.hidesbarsonswipe=yes;
4. Page jump is hidden Tabbar
Twoviewcontroller *TWOVC = [[Twoviewcontroller alloc] init];
Twovc.hidesbottombarwhenpushed =yes;
5.ScrollView cannot slide to the top
Self.automaticallyadjustsscrollviewinsets=no;
6. button click on the Glow effect
Button.showstouchwhenhighlighted =yes;
7. Long press gesture only once
if (sender.state = = uigesturerecognizerstate)
8. Hide the status bar
-(BOOL) Prefersstatusbarhidden
{
Returnyes;
}
9. When using the zoom of view, layer.border.width with the view magnification, there will be a jagged problem.
self.layer.allowsEdgeAntialiasing = YES;
Some tips for developing iOS