iOS开发中最有用关键的代码合集

移动开发 iOS
本文整理了,在iOS开发中我们所遇到一些开发问题的技巧类的代码,让你在开发过程中避免了很多弯路,希望能给你的开发带来帮助和启发。

本文整理了,在iOS开发中我们所遇到一些开发问题的技巧类的代码,让你在开发过程中避免了很多弯路,希望能给你的开发带来帮助和启发。

 

 

 

 

1.判断邮箱格式是否正确的代码:
 
  1. // 利用正则表达式验证 -( BOOL )isValidateEmail:( NSString  *)email  
  2. {  
  3. NSString  *emailRegex =  @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}" ;  
  4. NSPredicate  *emailTest = [ NSPredicate   predicateWithFormat : @"SELF MATCHES%@" ,emailRegex];  
  5. return  [emailTest  evaluateWithObject :email];  
  6. }  
2.图片压缩
 
  1. 用法: UIImage *yourImage= [self imageWithImageSimple:image scaledToSize:CGSizeMake(210.0, 210.0)]; // 压缩图片 - ( UIImage *)imageWithImageSimple:( UIImage *)image scaledToSize:( CGSize )newSize  
  2. {  
  3. // Create a graphics image context UIGraphicsBeginImageContext (newSize);  
  4. // Tell the old image to draw in this newcontext, with the desired // new size [image  drawInRect : CGRectMake ( 0 , 0 ,newSize. width ,newSize. height )];  
  5. // Get the new image from the context UIImage * newImage =  UIGraphicsGetImageFromCurrentImageContext ();  
  6. // End the context UIGraphicsEndImageContext ();  
  7. // Return the new image. return  newImage;  
  8. }  
  9.    
3.亲测可用的图片上传代码
 
  1. - ( IBAction )uploadButton:( id )sender {  
  2. UIImage  *image = [ UIImage   imageNamed : @"1.jpg" ]; // 图片名 NSData  *imageData =  UIImageJPEGRepresentation (image, 0.5 );// 压缩比例 NSLog ( @" 字节数 :%i" ,[imageData length]);  
  3. // post url NSString  *urlString =  @"http://192.168.1.113:8090/text/UploadServlet" ;  
  4. // 服务器地址 // setting up the request object now NSMutableURLRequest  *request = [[ NSMutableURLRequest   alloc ]  init ] ;  
  5. [request  setURL :[ NSURL   URLWithString :urlString]];  
  6. [request  setHTTPMethod : @"POST" ];  
  7. // NSString  *boundary = [ NSString   stringWithString : @"---------------------------14737809831466499882746641449" ];  
  8. NSString  *contentType = [ NSString   stringWithFormat : @"multipart/form-data;boundary=%@" ,boundary];  
  9. [request  addValue :contentType  forHTTPHeaderField :  @"Content-Type" ];  
  10. // NSMutableData  *body = [ NSMutableData   data ];  
  11. [body  appendData :[[ NSString   stringWithFormat : @"\r\n--%@\r\n" ,boundary]  dataUsingEncoding : NSUTF8StringEncoding ]];  
  12. [body  appendData :[[ NSString   stringWithString : @"Content-Disposition:form-data; name=\"userfile\"; filename=\"2.png\"\r\n" ]  dataUsingEncoding : NSUTF8StringEncoding ]]; // 上传上去的图片名字 [body  appendData :[[ NSString   stringWithString : @"Content-Type: application/octet-stream\r\n\r\n" ]  dataUsingEncoding : NSUTF8StringEncoding ]];  
  13. [body  appendData :[ NSData   dataWithData :imageData]];  
  14. [body  appendData :[[ NSString   stringWithFormat : @"\r\n--%@--\r\n" ,boundary]  dataUsingEncoding : NSUTF8StringEncoding ]];  
  15.   [request  setHTTPBody :body];  
  16. // NSLog(@"1-body:%@",body); NSLog ( @"2-request:%@" ,request);  
  17. NSData  *returnData = [ NSURLConnection   sendSynchronousRequest :request  returningResponse : nil   error : nil ];  
  18. NSString  *returnString = [[ NSString   alloc ]  initWithData :returnData  encoding : NSUTF8StringEncoding ];  
  19. NSLog ( @"3- 测试输出: %@" ,returnString );  
4.imageView加载图片
 
  1. UIImage  *myImage = [ UIImage   imageNamed : @"1.jpg" ];  
  2.    [ imageView   setImage :myImage];  
  3.    [ self . view   addSubview : imageView ];  
5.对图库的操作
 
  1. 选择相册: UIImagePickerControllerSourceTypesourceType=UIImagePickerControllerSourceTypeCamera;  
  2.    if (![UIImagePickerControllerisSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {  
  3.        sourceType=UIImagePickerControllerSourceTypePhotoLibrary;  
  4.    }  
  5.    UIImagePickerController * picker = [[UIImagePickerControlleralloc]init];  
  6.    picker.delegate = self;  
  7.    picker.allowsEditing=YES;  
  8.    picker.sourceType=sourceType;  
  9.    [self presentModalViewController:picker animated:YES];  
  10. 选择完毕:  -(void)imagePickerController:(UIImagePickerController*)pickerdidFinishPickingMediaWithInfo:(NSDictionary *)info  
  11. {  
  12.    [picker dismissModalViewControllerAnimated:YES];  
  13.    UIImage * image=[info objectForKey:UIImagePickerControllerEditedImage];  
  14.    [self performSelector:@selector(selectPic:) withObject:imageafterDelay:0.1];  
  15. }  
  16.  -(void)selectPic:(UIImage*)image  
  17. {  
  18.    NSLog(@"image%@",image);   
  19.    imageView = [[UIImageView alloc] initWithImage:image];  
  20.    imageView.frame = CGRectMake(0, 0, image.size.width, image.size.height);  
  21. [self.viewaddSubview:imageView];  
  22.    [self performSelectorInBackground:@selector(detect:) withObject:nil];  
  23. }  
  24. detect 为自己定义的方法,编辑选取照片后要实现的效果 取消选择:  -(void)imagePickerControllerDIdCancel:(UIImagePickerController*)picker  
  25.  
  26. {  
  27.    [picker dismissModalViewControllerAnimated:YES];  
  28. }  
6.跳到下个View
 
  1. nextWebView  = [[ WEBViewController   alloc ]  initWithNibName : @"WEBViewController"   bundle : nil ];  
  2. [ self   presentModalViewController : nextWebView   animated : YES ];  
7.创建一个UIBarButton右边按钮
 
  1. UIBarButtonItem  *rightButton = [[ UIBarButtonItem   alloc ]  initWithTitle : @" 右边 "   style : UIBarButtonItemStyleDone   target : self   action : @selector (clickRightButton)];  
  2. [  self . navigationItem   setRightBarButtonItem :rightButton];  
8.设置navigationBar隐藏
 
  1. self . navigationController . navigationBarHidden  =  YES ;//  
9.UIlabel多行文字自动换行 自动折行
 
  1. UIView *footerView = [[UIView alloc]initWithFrame:CGRectMake(10, 100, 300, 180)]; UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 150)]; label.text = @"Hello world! Hello world!Hello world! Hello world! Hello world! Hello world! Hello world! Hello world!Hello world! Hello world! Hello world! Hello world! Hello world! Helloworld!"// 背景颜色为红色 label.backgroundColor = [UIColor redColor]; // 设置字体颜色为白色 label.textColor = [UIColor whiteColor]; // 文字居中显示 label.textAlignment = UITextAlignmentCenter; // 自动折行设置 label.lineBreakMode = UILineBreakModeWordWrap; label.numberOfLines = 0;  
10.代码生成Button
 
  1. CGRect  frame =  CGRectMake ( 0 ,  400 ,  72.0 ,  37.0 );  
  2. UIButton  *button = [ UIButton   buttonWithType : UIButtonTypeRoundedRect ];  
  3. button. frame  = frame;  
  4. [button  setTitle : @" 新添加的按钮 "  forState:  UIControlStateNormal ];  
  5. button. backgroundColor  = [ UIColor   clearColor ];  
  6. button. tag  =  2000 ;  
  7. [button  addTarget : self   action : @selector (buttonClicked:)  forControlEvents : UIControlEventTouchUpInside ];  
  8. [ self . view   addSubview :button];  

10.2在xib文件中已经创建好Button,通过tag获取按钮 

 

  1. UIButton *testButton= (UIButton*)[self.view viewWithTag:100]; 
  2.     [testButton addTarget:self action:@selector(test:) forControlEvents:UIControlEventTouchUpInside];  

  //按钮事件

 

  1. -(void) test: (id) sender{ 
  2.     UIAlertView *av = [[[UIAlertView alloc] initWithTitle:@"ceshi" message:@"test11111" delegate:nil cancelButtonTitle:@"OK"otherButtonTitles:nil] autorelease]; 
  3.     [av show]; 
  4. }  

11.让某个控件在View的中心位置显示:

(某个控件,比如 label View label . center  =  self . view . center;
 
12.自定义text各种效果:
 
  1. cell.backgroundColor = [UIColorscrollViewTexturedBackgroundColor]; 
  2. // 设置文字的字体  
  3. cell.textLabel.font = [UIFont fontWithName:@"AmericanTypewriter" size:100.0f]; 
  4. // 设置文字的颜色  
  5. cell.textLabel.textColor = [UIColor orangeColor]; 
  6. // 设置文字的背景颜色  
  7. cell.textLabel.shadowColor = [UIColor whiteColor]; 
  8. // 设置文字的显示位置  
  9. cell.textLabel.textAlignment = UITextAlignmentCenter;  
13.隐藏statusBar:
在程序的 viewDidLoad 中加入
 
  1. [[UIApplication sharedApplication]setStatusBarHidden:YES animated:NO];  

14.更改AlertView背景:

 

  1. UIAlertView *theAlert = [[[UIAlertViewalloc] initWithTitle:@"Atention"  
  2.                                                      message: @"I'm a Chinese!"  
  3.                                                     delegate:nil   
  4.                                             cancelButtonTitle:@"Cancel"   
  5.                                             otherButtonTitles:@"Okay",nil] autorelease];  
  6.    [theAlert show];  
  7.    UIImage *theImage = [UIImageimageNamed:@"loveChina.png"];     
  8.    theImage = [theImage stretchableImageWithLeftCapWidth:0topCapHeight:0];  
  9.    CGSize theSize = [theAlert frame].size;  
  10.     UIGraphicsBeginImageContext(theSize);      
  11.    [theImage drawInRect:CGRectMake(5, 5, theSize.width-10, theSize.height-20)];// 这个地方的大小要自己调整,以适应 alertview 的背景颜色的大小。  
  12.    theImage = UIGraphicsGetImageFromCurrentImageContext();     
  13. UIGraphicsEndImageContext();  
  14.    theAlert.layer.contents = (id)[theImage CGImage];  

15.键盘透明:

 

  1. textField.keyboardAppearance = UIKeyboardAppearanceAlert; 

16.状态栏的网络活动风火轮是否旋转:

 

  1. [UIApplication sharedApplication].networkActivityIndicatorVisible , 默认值是 NO 。 

17.截取屏幕图片:

 

  1. // 创建一个基于位 图的图形上下文并指定大小为CGSizeMake(200,400) 
  2. UIGraphicsBeginImageContext(CGSizeMake(200,400));  
  3.  
  4. //renderInContext  呈现接受者及其子范围到 指定的上下文 
  5. [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 
  6.     // 返回 一个基于当前图形上下文的图片 
  7.  UIImage *aImage = UIGraphicsGetImageFromCurrentImageContext(); 
  8.   // 移除栈顶 的基于当前位图的图形上下文 
  9. UIGraphicsEndImageContext(); 
  10. // 以 png 格式 返回指定图片的数据 
  11. imageData = UIImagePNGR epresentation(aImage);  

18.更改cell选中的背景:

 

  1. UIView *myview = [[UIView alloc] init]; 
  2.    myview.frame = CGRectMake(0, 0, 320, 47); 
  3.    myview.backgroundColor = [UIColorcolorWithPatternImage:[UIImage imageNamed:@"0006.png"]]; 
  4.    cell.selectedBackgroundView = myview;:  

19.显示图片:

 

  1. CGRect myImageRect = CGRectMake(0.0f, 0.0f, 320.0f, 109.0f);  
  2. UIImageView *myImage = [[UIImageView alloc] initWithFrame:myImageRect]; 
  3. [myImage setImage:[UIImage imageNamed:@"myImage.png"]];  
  4. myImage.opaque = YES; //opaque 是否透明 
  5. [self.view addSubview:myImage];  
20.能让图片适应框的大小(beta)
 
  1. NSString*imagePath = [[NSBundle mainBundle] pathForResource:@"XcodeCrash"ofType:@"png"];      
  2.     UIImage *image = [[UIImage alloc]initWithContentsOfFile:imagePath];  
  3.         UIImage *newImage= [image transformWidth:80.f height:240.f];  
  4.     UIImageView *imageView = [[UIImageView alloc]initWithImage: newImage];  
  5.          [newImagerelease];  
  6.     [image release];  
  7.     [self.view addSubview:imageView];  

21. 实现点击图片进行跳转的代码:(生成一个带有背景图片的button,给button绑定想要的事件)

 

  1. UIButton *imgButton=[[UIButton alloc]initWithFrame:CGRectMake(0, 0, 120, 120)];  
  2. [imgButton setBackgroundImage:(UIImage *)[self.imgArray objectAtIndex:indexPath.row] forState:UIControlStateNormal];  
  3. imgButton.tag=[indexPath row];  
  4. [imgButton addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];  

22.键盘回收:

1).增加一个button,相应touch down事件,隐藏键盘。这种方法,太山寨了。为了相应一个事件增加一个button太不值得的。

 

  1. .h  
  2.  
  3.  
  4. - (IBAction)dismissKeyBoard:(id)sender;  
  5.  
  6. .m  
  7.  
  8.  
  9. - (IBAction)dismissKeyBoard:(id)sender {  
  10.  
  11.     [testText resignFirstResponder];  
  12.  
  13. }  

2).第二种方法:在背景图片上添加Tap事件,相应单击处理。这种方法,很好代替了button方式,但是如果UI上没有背景图片,这种方法又回到到第一种山寨的方法行列中。

 

// 添加带有处理时间的背景图片

 

  1. UIImageView *backView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];  
  2.  
  3.     backView.image = [UIImage imageNamed:@"small3.png"];  
  4.  
  5.       
  6.  
  7.     backView.userInteractionEnabled = YES;  
  8.  
  9.     UITapGestureRecognizer *singleTouch = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissKeyboard:)];  
  10.  
  11.     [backView addGestureRecognizer:singleTouch];  
  12.  
  13.       
  14.  
  15.     backView.tag = 110;  
  16.  
  17.     [self.view addSubview:backView];  
  18.  
  19.  
  20.  
  21. -(void)dismissKeyboard:(id)sender{  
  22.  
  23.     [text resignFirstResponder];  
  24.  
  25. }  

#p#

3).在xib文件中,修改xib文件的objects属性,默认是view属性,我们可以修改为UIControl属性,从而是xib文件相应touch down事件。这种方法,缺点就是没有xib就悲剧了。

 

  1. .h  
  2.  
  3.  
  4. - (IBAction)dimissKeyboard:(id)sender;  
  5.  
  6. .m  
  7.  
  8.  
  9. - (IBAction)dimissKeyboard:(id)sender {  
  10.  
  11.     [text resignFirstResponder];  
  12.  
  13. }  

23Gif图片的解析

 

  1. //加载gif   
  2.  
  3. 02     
  4.  
  5. 03   NSString *filePath = [[NSBundle mainBundle]pathForResource:@"bai3" ofType:@"gif"];   
  6.  
  7. 04     
  8.  
  9. 05     NSData *data = [NSData dataWithContentsOfFile:filePath];   
  10.  
  11. 06     
  12.  
  13. 07     CGImageSourceRef gif = CGImageSourceCreateWithData((CFDataRef)data, nil);   
  14.  
  15. 08     
  16.  
  17. 09  //获取gif的各种属性   
  18.  
  19. 10     
  20.  
  21. 11     CFDictionaryRef gifprops =(CGImageSourceCopyPropertiesAtIndex(gif,0,NULL));   
  22.  
  23. 12     
  24.  
  25. 13     NSLog(@"_______%@",gifprops);   
  26.  
  27. 14     
  28.  
  29. 15     
  30.  
  31. 16     NSInteger count =CGImageSourceGetCount(gif);   
  32.  
  33. 17     
  34.  
  35. 18     NSLog(@"________%d",count);   
  36.  
  37. 19     
  38.  
  39. 20     
  40.  
  41. 21    CFDictionaryRef gifDic = CFDictionaryGetValue(gifprops, kCGImagePropertyGIFDictionary);   
  42.  
  43. 22     
  44.  
  45. 23  CFDictionaryRef delay = CFDictionaryGetValue(gifDic, kCGImagePropertyGIFDelayTime);   
  46.  
  47. 24     
  48.  
  49. 25     NSLog(@"_______%@",delay);    
  50.  
  51. 26     
  52.  
  53. 27     
  54.  
  55. 28  //[gifDic objectForKey:(NSString *)kCGImagePropertyGIFDelayTime];   
  56.  
  57. 29     
  58.  
  59. 30     //    NSNumber * w = CFDictionaryGetValue(gifprops, @"PixelWidth");   
  60.  
  61. 31     
  62.  
  63. 32     //    NSNumber * h =CFDictionaryGetValue(gifprops, @"PixelHeight");   
  64.  
  65. 33     
  66.  
  67. 34     //    float totalDuration = delay.doubleValue * count;   
  68.  
  69. 35     
  70.  
  71. 36     //    float pixelWidth = w.intValue;   
  72.  
  73. 37     
  74.  
  75. 38     //    float pixelHeight = h.intValue;   
  76.  
  77. 39     
  78.  
  79. 40   //将gif解析成UIImage类型对象,并加进images数组中     
  80.  
  81. 41     
  82.  
  83. 42     
  84.  
  85. 43     NSMutableArray *images = [NSMutableArray arrayWithCapacity:count];   
  86.  
  87. 44     
  88.  
  89. 45     for(int index=0;index<count;index++)   
  90.  
  91. 46     
  92.  
  93. 47     {   
  94.  
  95. 48     
  96.  
  97. 49         CGImageRef ref = CGImageSourceCreateImageAtIndex(gif, index, nil);   
  98.  
  99. 50     
  100.  
  101. 51         UIImage *img = [UIImage imageWithCGImage:ref];   
  102.  
  103. 52     
  104.  
  105. 53         [images addObject:img];   
  106.  
  107. 54     
  108.  
  109. 55         CFRelease(ref);   
  110.  
  111. 56     
  112.  
  113. 57     }   
  114.  
  115. 58     
  116.  
  117. 59     CFRelease(gifprops);   
  118.  
  119. 60     
  120.  
  121. 61     CFRelease(gif);  

 

 

 

Gif的合成

 

  1. - (void)exportAnimatedGif:(CGImageSourceRef )gif :(NSMutableArray *)images   
  2.  
  3. 02     
  4.  
  5. 03 {   
  6.  
  7. 04     
  8.  
  9. 05        NSString *path = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"animated.gif"];   
  10.  
  11. 06     
  12.  
  13. 07     CGImageDestinationRef destination = CGImageDestinationCreateWithURL(( CFURLRef)[NSURL fileURLWithPath:path],   
  14.  
  15. 08     
  16.  
  17. 09                                                                         kUTTypeGIF,   
  18.  
  19. 10     
  20.  
  21. 11                                                                         images.count,   
  22.  
  23. 12     
  24.  
  25. 13                                                                         NULL);   
  26.  
  27. 14     
  28.  
  29. 15     UIImage *image;   
  30.  
  31. 16     
  32.  
  33. 17     for (int i = 0; i<images.count; i++)   
  34.  
  35. 18     
  36.  
  37. 19     {   
  38.  
  39. 20     
  40.  
  41. 21         image = images[i];   
  42.  
  43. 22     
  44.  
  45. 23         CFDictionaryRef gifprops =(CGImageSourceCopyPropertiesAtIndex(gif,i,NULL));   
  46.  
  47. 24     
  48.  
  49. 25         CFDictionaryRef gifDic = CFDictionaryGetValue(gifprops, kCGImagePropertyGIFDictionary);   
  50.  
  51. 26     
  52.  
  53. 27         NSNumber *delay = CFDictionaryGetValue(gifDic, kCGImagePropertyGIFDelayTime);   
  54.  
  55. 28     
  56.  
  57. 29         NSDictionary *gifDelay = [NSDictionary dictionaryWithObject:[NSDictionary dictionaryWithObject:delay forKey:(NSString *)kCGImagePropertyGIFDelayTime]   
  58.  
  59. 30     
  60.  
  61. 31                                                              forKey:(NSString *)kCGImagePropertyGIFDictionary];   
  62.  
  63. 32     
  64.  
  65. 33             
  66.  
  67. 34     
  68.  
  69. 35         CGImageDestinationAddImage(destination,image.CGImage, (CFDictionaryRef)gifDelay);   
  70.  
  71. 36     
  72.  
  73. 37         CGImageDestinationSetProperties(destination, ( CFDictionaryRef)gifprops);   
  74.  
  75. 38     
  76.  
  77. 39     }   
  78.  
  79. 40     
  80.  
  81. 41         
  82.  
  83. 42     
  84.  
  85. 43 //    CGImageDestinationSetProperties(destination, ( CFDictionaryRef)gifprops);   
  86.  
  87. 44     
  88.  
  89. 45     CGImageDestinationFinalize(destination);   
  90.  
  91. 46     
  92.  
  93. 47     CFRelease(destination);   
  94.  
  95. 48     
  96.  
  97. 49     NSLog(@"animated GIF file created at %@", path);   
  98.  
  99. 50     
  100.  
  101. 51     
  102.  
  103. 52 }  

24.将一个UIView对象的内容保存为UIImage

 

  1. + (UIImage*)imageFromView:(UIView*)view{   
  2.  
  3. 02     
  4.  
  5. 03 UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, view.layer.contentsScale);   
  6.  
  7. 04     
  8.  
  9. 05 [view.layer renderInContext:UIGraphicsGetCurrentContext()];   
  10.  
  11. 06     
  12.  
  13. 07 UIImage *image = UIGraphicsGetImageFromCurrentImageContext();   
  14.  
  15. 08     
  16.  
  17. 09 UIGraphicsEndImageContext();   
  18.  
  19. 10     
  20.  
  21. 11 return image;   
  22.  
  23. 12     
  24.  
  25. 13 }  

注意:生成的图片的scale和view的scale一致,这样才可以保证图片的效果和view显示的完全一致,使用renderInContext方法可以让subviews的内容也显示的图片里。

责任编辑:张叶青 来源: 开源社区
相关推荐

2011-04-27 16:20:30

iOS开发工具iOS开发工具

2012-12-24 14:51:02

iOS

2015-07-06 10:31:50

Java开发者监控工具

2018-09-18 08:35:23

数据中心KPI绩效

2015-03-23 09:44:55

iOS开发技巧

2018-08-06 13:46:07

编程语言Python数据科学库

2012-12-27 09:56:34

IaaSPaaS数据库

2022-09-21 13:30:39

公有云安全漏洞

2009-05-20 16:45:44

Eclipse快捷键重命名

2021-04-04 22:31:56

Python编程模块

2011-04-13 15:13:01

ASP.NET

2022-08-26 17:22:46

MySQL性能调优数据库

2021-05-28 12:09:39

安全技术物理安全技术

2014-11-14 17:08:24

代码

2017-10-20 11:12:12

数据类型关键字对象

2012-08-01 09:34:51

代码编辑器开发代码

2018-01-31 22:26:36

Java开发人员

2015-10-27 15:45:27

Web开发CSS代码

2012-07-20 10:46:44

Web

2019-10-17 08:42:46

WebPythonMatplotlib
点赞
收藏

51CTO技术栈公众号