IOS每日学习7.20之奇淫巧技

1.navigationController.hidesBarsOnSwipe = Yes;//scrollview上下滚动时隐藏导航栏

2.[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60) forBarMetrics:UIBarMetricsDefault];//消除导航视图返回键自带的title

3.将导航栏变成透明而不模糊

[self.navigationController.navigationBar setBackgroundImage:[UIImage new]

forBarMetrics:UIBarMetricsDefault];

self.navigationController.navigationBar .shadowImage = [UIImage new];

self.navigationController.navigationBar .translucent = YES;

4.拉伸图片不变形

[[UIImage imageNamed:@""] stretchableImageWithLeftCapWidth:10 topCapHeight:10];

[[UIImage imageNamed:@""] resizableImageWithCapInsets:UIEdgeInsetsMake(10, 10, 10, 10)];

5.使用FLAnimatedImage框架进行GIF图片的显示以及优化。github地址https://github.com/Flipboard/FLAnimatedImage

6.使用xib加载的view,view大小默认是600*600的。如果要达到期望的尺寸,要在获得view实例后,手动设置frame。

7._cmd  代表当前方法的名称,即selector

你可能感兴趣的:(IOS每日学习7.20之奇淫巧技)