zoukankan      html  css  js  c++  java
  • IOS 随笔记录

    一、IOS 关闭键盘:

    1、让所有控件的键盘隐藏

    // 这个方法可以让整个view取消第一响应者,从而让所有控件的键盘隐藏
    [self.view endEditing:YES];

    2、让某个textFiled的取消第一响应者

    // 让某个textFiled的取消第一响应者
    [textField resignFirstResponder];

    二、IOS 动画:(transform 属性

    1、透明度 ,取值范围0~1.0(透明~不透明)。

    // 透明度 ,取值范围0~1.0(透明~不透明)。
    _btn.alpha = 1.0f;

    2、旋转

    // 固定左旋45°
    _btn.transform = CGAffineTransformMakeRotation(- M_PI_4);
    
    // 每次执行都在原来基础上旋转45度
    _btn.transform = CGAffineTransformRotate(_btn.transform, M_PI_4 );

    3、缩放

    // 缩放0.8
    _btn.transform = CGAffineTransformMakeScale(0.8, 0.8);
    // 在原来基础上缩放0.8
    _btn.transform = CGAffineTransformScale(_btn.transform, 0.8, 0.8);

    4、清空之前所有的形变状态(消除以前的旋转、缩放等状态)

    _btn.transform = CGAffineTransformIdentity;

    5、常用方法

    // 方法一:0.3 表示执行时间
    [UIView animateWithDuration:0.3 animations:^{
    
          // 执行动画代码
    }];
    
    // 方法二:0.3 表示执行时间
    [UIView animateWithDuration:0.3 animations:^{
    
          // 执行动画代码
    } completion:^(BOOL finished) {
    
          // 上面的动画执行完毕后执行
    }];

    三、解析plist文件来创建数组对象

    NSBundle *bundle = [NSBundle mainBundle]; // C++
    NSString *path = [bundle pathForResource:@"descs" ofType:@"plist"];
    _allDescs = [NSArray arrayWithContentsOfFile:path];

    三、iOS8.0模拟器,改语言设置

    Product->scheme->Edit Scheme->Options->Application Region改为中国就OK了

  • 相关阅读:
    poj 2947 Widget Factory 夜
    poj 1222 EXTENDED LIGHTS OUT 夜
    poj 3440 Coin Toss 夜
    poj 1166 The Clocks 夜
    poj 3270 Cow Sorting 夜
    poj 3071 Football 夜
    poj 2409 Let it Bead 夜
    poj 1141 Brackets Sequence 夜
    hdu 4311 Meeting point1 夜
    poj 1026 Chipher 夜
  • 原文地址:https://www.cnblogs.com/duke-cui/p/11099148.html
Copyright © 2011-2022 走看看