工具类傲视苍穹iOS《Objective-C》VIP专题首页投稿(暂停使用,暂停投稿)

iOS 实用小功能

2016-11-15  本文已影响156人  iOS开发技术

1 、xib中label进行换行

    1、label.numberlines = 0; 

    2、xib中将光标移至换行位置,按住option键+enter键  

2、 多个异步任务进行处理,用GCD的dispatch_group_t,还有其他的方法,不过用这个就好了

// 1.创建dispatch_group_t
dispatch_group_t group = dispatch_group_create();

for (int i=0; i<10; i++) {

     // 2、将当前的下载操作添加到组中

      dispatch_group_enter(group);

        {

              // 数据请求成功离开当前组

                 dispatch_group_leave(group);

        }

}
// 3.当所有图片都下载完毕再通过闭包通知调用者

dispatch_group_notify(group, dispatch_get_main_queue(), ^{

         // 能够来到这个地方, 一定是所有任务都已经完成
});

3、App进行评分

NSString *str = [NSString stringWithFormat:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=xxxxxx" ];

if( ([[[UIDevice currentDevice] systemVersion] doubleValue]>=7.0)){

           str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/idxxxxxxx"];

}

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

4、 跳转进入app的设置界面

NSURL * url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
if([[UIApplication sharedApplication] canOpenURL:url]) {
          NSURL*url =[NSURL           
           URLWithString:UIApplicationOpenSettingsURLString];
           [[UIApplication sharedApplication] openURL:url];
}

5、label设置删除线

UILabel *originPriceLabel = [UILabel new];

NSString *originPriceString = [NSString stringWithFormat:@"¥ %@0", @"100"];

NSMutableAttributedString *originPriceAttrsStr = [[NSMutableAttributedString alloc] initWithString:originPriceString];

[originPriceAttrsStr addAttribute:NSStrikethroughStyleAttributeName value:@(1)

range:NSMakeRange(0, originPriceString.length)];

originPriceLabel.attributedText = originPriceAttrsStr;

6、 设置textView或者label的行间距方法

UILabel *label = [UILabel new];
label.numberOfLines = 0;
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineSpacing = 4;
NSDictionary *attributes = @{ NSFontAttributeName:[UIFont systemFontOfSize:14], NSParagraphStyleAttributeName:paragraphStyle};
label.attributedText = [[NSAttributedString alloc]initWithString:label.text attributes:attributes];

7、 NSArray倒序

NSArray *arr = [NSArray array];

NSArray *tmparr = [[arr reverseObjectEnumerator] allObjects];

NSLog(@"%@",tmparr);

8、UIImageView设置圆角时产生UI不流畅的解决

//        只需要加上这段代码就可以去除锯齿
imageView.layer.shouldRasterize = YES;
当shouldRasterize设成true时,layer被渲染成一个bitmap,并缓存起来,等下次使用时不会再重新去渲染了。实现圆角本身就是在做颜色混合(blending),如果每次页面出来时都blending,消耗太大,这时shouldRasterize = yes,下次就只是简单的从渲染引擎的cache里读取那张bitmap,节约系统资源。

额外收获:如果在滚动tableView时,每次都执行圆角设置,肯定会阻塞UI,设置这个将会使滑动更加流畅。
原文链接:http://blog.csdn.net/zhuangyou123/article/details/8737367

9、 打电话

//1、这种发放,拨打完电话回不到原来的应用,会停留在通讯录里面,而且是直接拨打,不弹出提示
      NSMutableString * str1=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"];
      [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str1]];
//2,这种方法,打完电话后还会回到原来的程序,也会弹出提示,推荐这种
         NSMutableString * str2=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"];
        UIWebView * callWebview = [[UIWebView alloc] init];
        [callWebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str2]]];
        [self.view  addSubview:callWebview];
// 3,这种方法也会回去到原来的程序里(注意这里的telprompt),也会弹出提示
     NSMutableString * str3=[[NSMutableString alloc] initWithFormat:@"telprompt://%@",@"186xxxx6979"];
     [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str3]];
//用第3个的时候要小心,因为apple的文档里边没出现过telprompt这个。      之前是有过被reject的案例。

10 、不能改变高度的控件,通过设置transform来更改高度

  //比如UIProgressView:
self.progressView.transform=CGAffineTransformMakeScale(1.0F,3.0F);

11 、显示和隐藏隐藏文件

终端输入:
1、显示

//        defaults write com.apple.finder AppleShowAllFiles -bool true

2、  隐藏

//        defaults write com.apple.finder AppleShowAllFiles -bool false

#pragma mark - 11 多国文字

http://blog.sina.com.cn/s/blog_7b9d64af0101jncz.html

12、 设置UITextView,UITextField KVC的运用

//UITextView,UITextField设置文字长度
[self.textView setValue:@140 forKey:@"limit"];
[self.textFiled setValue:@14 forKey:@"limit"];
需要引入https://github.com/xuwening/textInputLimit

//UITextField placeHolder设置
[self.textFieldsetValue:[UIColorredColor]forKeyPath:@"_placeholderLabel.textColor"];
[self.textFieldsetValue:[UIFontsystemFontOfSize:14]forKeyPath:@"_placeholderLabel.font"];

13、 cell 系统分割线距离边框设置

 cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);

欢迎补充

上一篇下一篇

猜你喜欢

热点阅读