iOS开发中简单实用的几个小技巧

时间:2022-10-09 00:04:19

前言

本文记录了在ios开发过程中所遇到的小知识点,以及一些技巧,下面话不多说,来看看详细的介绍。

技巧1:uibutton图片与文字默认是左右排列,如何实现右左排列?

解决技巧:

?
1
2
3
button.transform = cgaffinetransformmakescale(-1.0, 1.0);
button.titlelabel.transform = cgaffinetransformmakescale(-1.0, 1.0);
button.imageview.transform = cgaffinetransformmakescale(-1.0, 1.0);

iOS开发中简单实用的几个小技巧

技巧2:设置导航栏透明,title与barbuttonitem不透明

?
1
2
3
[self.navigationcontroller.navigationbar setbackgroundimage:[uiimage new] forbarmetrics:uibarmetricsdefault];
 
self.navigationcontroller.navigationbar.translucent = yes;

iOS开发中简单实用的几个小技巧

技巧3:设置导航栏无边框

?
1
self.navigationcontroller.navigationbar.shadowimage = [uiimage new];

iOS开发中简单实用的几个小技巧

技巧4: 随视图的滚动导航栏隐藏与显示(一句代码即可)

?
1
self.navigationcontroller.hidesbarsonswipe = yes;

iOS开发中简单实用的几个小技巧

技巧5:简单好用的获取当前时间戳

?
1
2
3
4
//时间戳
time_t now;
time(&now);
nslog(@"---%ld",now);

iOS开发中简单实用的几个小技巧

技巧6:只设置uiview的左上角和右上角的圆角 (四个圆角位置都可以选择)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
uiview *blueview = [[uiview alloc] initwithframe:cgrectmake(100, 100, 200, 100)];
blueview.backgroundcolor = [uicolor bluecolor];
[self.view addsubview: blueview];
/*设置圆角位置的枚举参数
 uirectcornertopleft  = 1 << 0,
 uirectcornertopright = 1 << 1,
 uirectcornerbottomleft = 1 << 2,
 uirectcornerbottomright = 1 << 3,
 uirectcornerallcorners = ~0ul
 */
uibezierpath *maskpath = [uibezierpath bezierpathwithroundedrect:blueview.bounds byroundingcorners:(uirectcornertopleft|uirectcornertopright) cornerradii:cgsizemake(20.0, 20.0)];
cashapelayer *masklayer = [cashapelayer layer];
masklayer.frame = blueview.bounds;
masklayer.path = maskpath.cgpath;
blueview.layer.mask = masklayer;

iOS开发中简单实用的几个小技巧

技巧7: 加载uiwebview后禁止用户复制剪切

?
1
2
3
4
5
6
7
8
9
10
11
// 控制器实现此方法
- (bool)canperformaction:(sel)action withsender:(id)sender
{
 if (action == @selector(copy:) ||
  action == @selector(paste:)||
  action == @selector(cut:))
 {
  return no;
 }
 return [super canperformaction:action withsender:sender];
}

技巧8:跳转控制器隐藏tabbar一个一劳永逸的方法

?
1
2
3
4
5
6
7
8
// 创建一个nav基类 重写pushviewcontroller:方法 如下:
-(void)pushviewcontroller:(uiviewcontroller *)viewcontroller animated:(bool)animated {
 
 viewcontroller.hidesbottombarwhenpushed = yes;
 
 [super pushviewcontroller:viewcontroller animated:animated];
 
}

总结

以上就是这篇文章的全部内容了,希望本文的这些小技巧对各位ios开发者们能有所帮助,如果有疑问大家可以留言交流。小编还会陆续更新关于ios相关技巧的文章,请继续关注服务器之家。