自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

iOS開發(fā)中最有用關(guān)鍵的代碼合集

移動(dòng)開發(fā) iOS
本文整理了,在iOS開發(fā)中我們所遇到一些開發(fā)問題的技巧類的代碼,讓你在開發(fā)過程中避免了很多彎路,希望能給你的開發(fā)帶來幫助和啟發(fā)。

本文整理了,在iOS開發(fā)中我們所遇到一些開發(fā)問題的技巧類的代碼,讓你在開發(fā)過程中避免了很多彎路,希望能給你的開發(fā)帶來幫助和啟發(fā)。

 

 

 

 

1.判斷郵箱格式是否正確的代碼:
 
  1. // 利用正則表達(dá)式驗(yàn)證 -( 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.親測(cè)可用的圖片上傳代碼
 
  1. - ( IBAction )uploadButton:( id )sender {  
  2. UIImage  *image = [ UIImage   imageNamed : @"1.jpg" ]; // 圖片名 NSData  *imageData =  UIImageJPEGRepresentation (image, 0.5 );// 壓縮比例 NSLog ( @" 字節(jié)數(shù) :%i" ,[imageData length]);  
  3. // post url NSString  *urlString =  @"http://192.168.1.113:8090/text/UploadServlet" ;  
  4. // 服務(wù)器地址 // 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- 測(cè)試輸出: %@" ,returnString );  
4.imageView加載圖片
 
  1. UIImage  *myImage = [ UIImage   imageNamed : @"1.jpg" ];  
  2.    [ imageView   setImage :myImage];  
  3.    [ self . view   addSubview : imageView ];  
5.對(duì)圖庫的操作
 
  1. 選擇相冊(cè): 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 為自己定義的方法,編輯選取照片后要實(shí)現(xiàn)的效果 取消選擇:  -(void)imagePickerControllerDIdCancel:(UIImagePickerController*)picker  
  25.  
  26. {  
  27.    [picker dismissModalViewControllerAnimated:YES];  
  28. }  
6.跳到下個(gè)View
 
  1. nextWebView  = [[ WEBViewController   alloc ]  initWithNibName : @"WEBViewController"   bundle : nil ];  
  2. [ self   presentModalViewController : nextWebView   animated : YES ];  
7.創(chuàng)建一個(gè)UIBarButton右邊按鈕
 
  1. UIBarButtonItem  *rightButton = [[ UIBarButtonItem   alloc ]  initWithTitle : @" 右邊 "   style : UIBarButtonItemStyleDone   target : self   action : @selector (clickRightButton)];  
  2. [  self . navigationItem   setRightBarButtonItem :rightButton];  
8.設(shè)置navigationBar隱藏
 
  1. self . navigationController . navigationBarHidden  =  YES ;//  
9.UIlabel多行文字自動(dòng)換行 自動(dòng)折行
 
  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]; // 設(shè)置字體顏色為白色 label.textColor = [UIColor whiteColor]; // 文字居中顯示 label.textAlignment = UITextAlignmentCenter; // 自動(dòng)折行設(shè)置 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文件中已經(jīng)創(chuàng)建好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.讓某個(gè)控件在View的中心位置顯示:

(某個(gè)控件,比如 label , View label . center  =  self . view . center;
 
12.自定義text各種效果:
 
  1. cell.backgroundColor = [UIColorscrollViewTexturedBackgroundColor]; 
  2. // 設(shè)置文字的字體  
  3. cell.textLabel.font = [UIFont fontWithName:@"AmericanTypewriter" size:100.0f]; 
  4. // 設(shè)置文字的顏色  
  5. cell.textLabel.textColor = [UIColor orangeColor]; 
  6. // 設(shè)置文字的背景顏色  
  7. cell.textLabel.shadowColor = [UIColor whiteColor]; 
  8. // 設(shè)置文字的顯示位置  
  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)];// 這個(gè)地方的大小要自己調(diào)整,以適應(yīng) alertview 的背景顏色的大小。  
  12.    theImage = UIGraphicsGetImageFromCurrentImageContext();     
  13. UIGraphicsEndImageContext();  
  14.    theAlert.layer.contents = (id)[theImage CGImage];  

15.鍵盤透明:

 

  1. textField.keyboardAppearance = UIKeyboardAppearanceAlert; 

16.狀態(tài)欄的網(wǎng)絡(luò)活動(dòng)風(fēng)火輪是否旋轉(zhuǎn):

 

  1. [UIApplication sharedApplication].networkActivityIndicatorVisible , 默認(rèn)值是 NO 。 

17.截取屏幕圖片:

 

  1. // 創(chuàng)建一個(gè)基于位 圖的圖形上下文并指定大小為CGSizeMake(200,400) 
  2. UIGraphicsBeginImageContext(CGSizeMake(200,400));  
  3.  
  4. //renderInContext  呈現(xiàn)接受者及其子范圍到 指定的上下文 
  5. [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 
  6.     // 返回 一個(gè)基于當(dāng)前圖形上下文的圖片 
  7.  UIImage *aImage = UIGraphicsGetImageFromCurrentImageContext(); 
  8.   // 移除棧頂 的基于當(dāng)前位圖的圖形上下文 
  9. UIGraphicsEndImageContext(); 
  10. // 以 png 格式 返回指定圖片的數(shù)據(jù) 
  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.能讓圖片適應(yīng)框的大?。╞eta)
 
  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. 實(shí)現(xiàn)點(diǎn)擊圖片進(jìn)行跳轉(zhuǎn)的代碼:(生成一個(gè)帶有背景圖片的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).增加一個(gè)button,相應(yīng)touch down事件,隱藏鍵盤。這種方法,太山寨了。為了相應(yīng)一個(gè)事件增加一個(gè)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事件,相應(yīng)單擊處理。這種方法,很好代替了button方式,但是如果UI上沒有背景圖片,這種方法又回到到第一種山寨的方法行列中。

 

// 添加帶有處理時(shí)間的背景圖片

 

  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屬性,默認(rèn)是view屬性,我們可以修改為UIControl屬性,從而是xib文件相應(yīng)touch down事件。這種方法,缺點(diǎn)就是沒有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類型對(duì)象,并加進(jìn)images數(shù)組中     
  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.將一個(gè)UIView對(duì)象的內(nèi)容保存為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的內(nèi)容也顯示的圖片里。

責(zé)任編輯:張葉青 來源: 開源社區(qū)
相關(guān)推薦

2011-04-27 16:20:30

iOS開發(fā)工具iOS開發(fā)工具

2012-12-24 14:51:02

iOS

2015-07-06 10:31:50

Java開發(fā)者監(jiān)控工具

2018-09-18 08:35:23

數(shù)據(jù)中心KPI績(jī)效

2012-12-27 09:56:34

IaaSPaaS數(shù)據(jù)庫

2018-08-06 13:46:07

編程語言Python數(shù)據(jù)科學(xué)庫

2015-03-23 09:44:55

iOS開發(fā)技巧

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

2021-05-28 12:09:39

安全技術(shù)物理安全技術(shù)

2022-08-26 17:22:46

MySQL性能調(diào)優(yōu)數(shù)據(jù)庫

2018-01-31 22:26:36

Java開發(fā)人員

2014-11-14 17:08:24

代碼

2015-10-27 15:45:27

Web開發(fā)CSS代碼

2012-07-20 10:46:44

Web

2012-08-01 09:34:51

代碼編輯器開發(fā)代碼

2017-10-20 11:12:12

數(shù)據(jù)類型關(guān)鍵字對(duì)象

2019-10-17 08:42:46

WebPythonMatplotlib
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)