OC 小代碼塊

一、設置導航欄標題的字體顏色和大小ios

   方法一:(自定義視圖的方法,通常人也會採用這樣的方式)git

        就是在導航向上添加一個titleView,可使用一個label,再設置label的背景顏色透明,字體什麼的設置就很簡單了。web

       

  
//自定義標題視圖
UILabel *titleLabel = [[UILabel  
alloc] initWithFrame:CGRectMake(0, 020044)];
titleLabel.backgroundColor = [UIColor grayColor];
titleLabel.font = [UIFont boldSystemFontOfSize:20];
titleLabel.textColor = [UIColor greenColor];
titleLabel.textAlignment = NSTextAlignmentCenter;
titleLabel.text = @"新聞";
self.navigationItem.titleView = titleLabel;
View Code

  

  方法二:(在默認顯示的標題中直接修改文件的大小和顏色也是能夠的) 算法

  
[self.navigationController.navigationBar setTitleTextAttributes:@{
                                                                           NSFontAttributeName:[UIFont systemFontOfSize:19],
                                                                           NSForegroundColorAttributeName:[UIColor redColor]
                                                                         }
        ]
View Code

 

二、多容器添加同一子控件的bugapp

  [someView addSubView:sbView];dom

  那麼在被添加到父視圖someView以前,若是sbView已經被otherView加載了,那麼上面的代碼會先講sbView從otherView remove掉,在被加載到someView。ide

  因此一個view是不可能同時被2個以上的view加載作子視圖的。函數

 

三、返回根控制器字體

  
- (void)dismissToRootViewController:(UIViewController *)viewController{
    if (viewController.presentingViewController == nil) {
        [viewController.navigationController popToRootViewControllerAnimated:NO];
    }else{
        UIViewController *vc = viewController.presentingViewController;
        while (vc.presentingViewController != nil) {
            vc = vc.presentingViewController;
        }
        [vc dismissViewControllerAnimated:NO completion:nil];
    }
}
View Code

 

四、獲取照片拍攝地點信息ui

  
- (NSDictionary *)metadata {
    return self.asset.defaultRepresentation.metadata;
}

- (CLGeocoder *)geoC
{
    if(!_geoC){
        _geoC = [[CLGeocoder alloc] init];
    }
    return _geoC;
}
- (void)addressInit{
      // 獲取位置信息
    NSDictionary *metadata = [self metadata];
    NSDictionary *GPSDict=[metadata objectForKey:(NSString*)kCGImagePropertyGPSDictionary];
     // 經緯度
    CLLocationDegrees latitude = [[GPSDict objectForKey:@"Latitude"] doubleValue];
    CLLocationDegrees longitude = [[GPSDict objectForKey:@"Longitude"] doubleValue];
    CLLocation *loc = [[CLLocation alloc] initWithLatitude:latitude longitude:longitude];
    WEAKSELF
     // 反地理編碼
    [self.geoC reverseGeocodeLocation:loc completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
        CLPlacemark *pl = [placemarks firstObject];
        if(error == nil){
            NSString *str = [NSString stringWithFormat:@"%@%@%@",pl.locality, pl.subLocality, pl.name];
            weakSelf.address = str;
        }
        else{
            weakSelf.address = @"";
        }
    }];
}
View Code

 

五、隨機數  隨機色

  Objective-C 中有個arc4random()函數用來生成隨機數且不須要種子,

       可是這個函數生成的隨機數範圍比較大,須要用取模的算法對隨機值進行限制,有點麻煩。

   

  更方便的隨機數函數arc4random_uniform(x),

       能夠用來產生0~(x-1)範圍內的隨機數,不須要再進行取模運算。

       若是要生成1~x的隨機數,能夠這麼寫:arc4random_uniform(x)+1

 

  隨機色:

  
#define random(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0alpha:(a)/255.0]

#define randomColor random(arc4random_uniform(256), arc4random_uniform(256), arc4random_uniform(256), arc4random_uniform(256))

[UIColor colorWithRed:arc4random_uniform(255)/255.0 green:arc4random_uniform(255)/255.0 blue:arc4random_uniform(255)/255.0 alpha:1];
View Code

 

六、退出app

  
 AppDelegate *app = [UIApplication sharedApplication].delegate;
 UIWindow *window = app.window;
           
  [UIView animateWithDuration:0.4f animations:^{
         window.alpha = 0;
         CGFloat y = window.bounds.size.height;
         CGFloat x = window.bounds.size.width / 2;
         window.frame = CGRectMake(x, y, 0, 0);
 } completion:^(BOOL finished) {
          exit(0);
  }];
View Code

 

七、移除導航條按鈕

  
 UIButton *button = [UIButton buttonWithType:UIButtonTypeContactAdd];
    button.frame = CGRectMake(003030);
    UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithCustomView:button];
    self.navigationItem.leftBarButtonItem = barButton;
#if 0
    //第一種
    self.navigationItem.leftBarButtonItem = nil;
#else
    //第二種
    [self.navigationController.navigationBar.subviews.lastObject setHidden:YES];
#endif
View Code

 

八、隱藏導航欄下劃線

  
    // 1)聲明UIImageView變量,存儲底部橫線
    @implementation MyViewController {
        UIImageView *navBarHairlineImageView;
    }
   //  2)在viewDidLoad中加入:
    navBarHairlineImageView = [self findHairlineImageViewUnder:navigationBar]
   
   // 3)
    - (UIImageView *)findHairlineImageViewUnder:(UIView *)view {
        if ([view isKindOfClass:UIImageView.class] && view.bounds.size.height <= 1.0) {
            return (UIImageView *)view;
        }
        for (UIView *subview in view.subviews) {
            UIImageView *imageView = [self findHairlineImageViewUnder:subview];
            if (imageView) {
                return imageView;
            }
        }
        return nil;
    }
   
    // 最後在viewWillAppear,viewWillDisappear中處理
    - (void)viewWillAppear:(BOOL)animated {
        [super viewWillAppear:animated];
        navBarHairlineImageView.hidden = YES;
    }
   
    - (void)viewWillDisappear:(BOOL)animated {
        [super viewWillDisappear:animated];
        navBarHairlineImageView.hidden = NO;
    }


    WEAKSELF
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        [weakSelf.navigationController.navigationBar.subviews enumerateObjectsUsingBlock:^(__kindof UIView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            if ([obj isKindOfClass:NSClassFromString(@"_UIBarBackground")]) {
                [obj.subviews enumerateObjectsUsingBlock:^(__kindof UIView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
                    if ([obj isKindOfClass:[UIImageView class]]) {
                        [obj setHidden:YES];
                    }
                }];
            }
        }];
    });
View Code

 

九、translucent 與 controller.view

  translucent = NO;

      

   translucent = YES;

      

十、禁用第三方輸入法

  
- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString*)extensionPointIdentifier
{
    return NO;
}
View Code

 

十一、UIView截屏

  
  /*
    UIGraphicsBeginImageContextWithOptions(view.frame.size, NO, 0);
   
    CGContextRef context = UIGraphicsGetCurrentContext();
   
    // Render the view
    [view.layer renderInContext:context];
   
    // Get the image from the context
    UIImage *renderedImage = UIGraphicsGetImageFromCurrentImageContext();
   
    // Cleanup the context you created
    UIGraphicsEndImageContext();
   
    return renderedImage;
    */  
+ (UIImage *)snapShotFrom:(UIView *)view{   
    // 避免frame爲nil致使異常
    if (CGRectIsEmpty(view.frame)) {
        return nil;
    }
   
    UIGraphicsBeginImageContextWithOptions(view.frame.size, YES, 0.0);
   
    if ([view respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)]) {
        [view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
    }
    else{
          // 佔用內存高  引發異常
        [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    }
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
   
    return image;
}
View Code

  當視圖快速切換時的崩潰

    這個崩潰是使用了while循環連續截屏100次webview發現的,崩潰爲EXE_BAD_ACCESS 

    緣由是afterScreenUpdates設置爲了YES.

  爲何會崩潰呢? 由於設置爲YES後,這些方法會等在view update結束在執行,若是在update結束前view被release了,會出現找不到view的問題.因此須要設置爲NO. 

 

十二、XCODE調試時不顯示變量值/指針地址的解決方案

  1.Scheme中run裏面確保設成debug

    

   2.build settings-搜索optim,確保是-O0

    

  3.build settings-搜索-O2,改爲-g。這項最坑爹,好像是默認的設置成-O2的

    

 

1三、比較兩個圖片是否相同

   1.若是2張圖片都被加載都resource中,並且圖片名稱已知,使用imageNamed:建立2個UIImage對象就好,而後用isequal去比較。

   2.兩張圖片存儲在ios沙盒的某個位置,未被加載到resource中,比較兩個UIImage的data,看看是否相同。

  
NSString* file = [dic stringByAppendingPathComponent:path];

UIImage *image = [UIImage imageWithContentsOfFile:file];

NSData *data1 = UIImagePNGRepresentation(image1);

NSData *data = UIImagePNGRepresentation(image);

if ([data isEqual:data1]) {

      NSLog(@"is equae");
}
View Code

 

1四、UITableView間隔、顏色

   要想改變其seperator的高度,是作不到的

    首先,咱們將其sperator設置爲none。

    其次,咱們在構建tableview的時候,使用多secton,每一個section中僅有一個row的方式構建

    第三,設置每一個sectionheaderView的高度爲要求的高度。

    第四,從新定製每個sectionheaderView,設置section的背景顏色爲指定的顏色。

    代碼以下:

  
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
    {
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, height)]; //height爲設計師制定的高度。
        view.backgroundColor = [UIColor redColor];
        return view;
}
View Code

 

1五、實時檢測UITextField的變化

  使用UISearchBar,UISearchBar的內容動態改變的時候,咱們是能夠經過代理來獲知這個改變的。

    在使用UITextField的時候,沒有合適的代理函數,使用註冊通知。

  
    // 1,在initWithNibName中註冊對應的通知:
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
            [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldChanged:) name:UITextFieldTextDidChangeNotification object:_passwordTextField];
        }
        return self;
    }
    
    // 2,實現textFieldChanged函數
    - (void)textFieldChanged:(id)sender
    {
        NSLog(@"current ContentOffset is %@",NSStringFromCGPoint(_contentView.contentOffset));
    }
    
    // 3,記得在dealloc中刪除掉通知。
    - (void)dealloc
    {
        [[NSNotificationCenter defaultCenter] removeObserver:self name:UITextFieldTextDidChangeNotification object:nil];
}
View Code

 

1六、UITextField加陰影

  UITextView輸入的時候,文字下面有陰影,系統默認只有UILabel有幾個簡單的接口能夠設陰影,

  至於UITextView的陰影就基本上沒人用了,給UITextView的文字加陰影的辦法,即經過layer層來設置。

   上代碼

    請記得加入 QuartzCore.framework。

  View Code

 

1七、判斷程序第一次啓動  

  View Code

 

1八、查看UUID

  1.查看 xx.app 文件的 UUID,terminal 中輸入命令 :

    ·dwarfdump --uuid xx.app/xx (xx表明你的項目名)

   2.查看 xx.app.dSYM 文件的 UUID ,在 terminal 中輸入命令:

    ·dwarfdump --uuid xx.app.dSYM

   3.crash 文件內第一行 Incident Identifier 就是該 crash 文件的 UUID。

 

1九、禁用手勢

  
<UIGestureRecognizerDelegate>

self.navigationController.interactivePopGestureRecognizer.delegate = self;

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer{
    return NO;
}
View Code

 

20、NSStringUTF-8編碼解碼  

  
// iOS中對字符串進行UTF-8編碼:輸出str字符串的UTF-8格式
[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

// 解碼:把str字符串以UTF-8規則進行解碼
[str stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
View Code

 

2一、手勢與tableview事件衝突處理

  
// 在view上添加tag手勢的時候,而且設置tag事件的代理
//而後根據具體的業務場景去寫邏輯就能夠了,好比
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
    //Tip:咱們能夠經過打印touch.view來看看具體點擊的view是具體是什麼名稱,像點擊UITableViewCell時響應的View則是UITableViewCellContentView.
    if ([NSStringFromClass([touch.view class]) isEqualToString:@"UITableViewCellContentView"]) {
        //返回爲NO則屏蔽手勢事件
        return NO;
    }
    return YES;
}
View Code

 

2二、ScrollView header懸停  

  
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    if (scrollView.contentOffset.y >= 50) {
        self.header.frame = CGRectMake(0, 0, 375, 35);
        [self.view addSubview:self.header];
    } else {
        self.header.frame = CGRectMake(0, 50, 375, 35);
        [self.scrollView addSubview:self.header];
    }
}
View Code

 

2三、從設備支持的字體中隨機選擇一個

  
     // 從設備支持的字體中隨機選擇一個
    NSString *fontName = @"";
    
    NSUInteger count1 = arc4random() % ([UIFont familyNames].count);
    
    NSString *familyName = [UIFont familyNames][count1];
    
    NSUInteger count2 = [UIFont fontNamesForFamilyName:familyName].count;
    
    fontName = [UIFont fontNamesForFamilyName:familyName][arc4random() % count2];
View Code

 

2四、UIFont CGFontRef

  
   // 建立 UIFont 字體
    UIFont *font = [UIFont systemFontOfSize:15];
    
    // 轉換成 CGFontRef
    CFStringRef fontName = (__bridge CFStringRef)font.fontName;
    CGFontRef fontRef = CGFontCreateWithFontName(fontName);
View Code

 

2五、字符串轉日期失敗   NSDataFormatter 格式設置:  

  
//You're using the wrong formatter:
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy"];
NSDate *startDatePlain=[formatter dateFromString:start];
NSDate *endDatePlain=[formatter dateFromString:end];
    
//You need to use your detailformatter:
NSDateFormatter *detailformatter = [[NSDateFormatter alloc] init];
[detailformatter setDateFormat:@"MM/dd/yyyy"];
NSDate *startDatePlain=[detailformatter dateFromString:start];
NSDate *endDatePlain=[detailformatter dateFromString:end];
    
//You've got the correct format set on detailformatter!
View Code
相關文章
相關標籤/搜索