UI基础

一.IBAction 和 IBOutlet

  • IBAction:
    • 本质就是void
    • 能让方法具备连线功能
  • IBOutlet
    • 能让属性具备连线功能

二.Storyboard连线出现的问题

  • 连接的属性代码被删除,但连线没有去掉.会报以下错误:

    • setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key
  • 连接的方法代码被删掉,但是连线没有去掉.可能会出现方法找不到错误

    • unrecognized selector sent to instance

三.项目属性

  • Product Name
    • 软件名称、产品名称、项目名称
  • Organization Name
    • 公司名称、组织名称
  • Organization Identifier
    • 公司的唯一标识
    • 一般是公司域名的反写,比如com.xxxx
  • Bundle Identifier
    • 软件的唯一标识
    • 一般是Organization Identifier + Product Name

四.UIView常用属性

@property(nonatomic,readonly) UIView *superView; // 获得自己父控件对象
@property(nonatomic,readonly,copy) NSArray *subViews; // 获得自己所有的子控制对象
@property(nonatomic) NSInteger tag; // 控件ID标识符,可以通过对应的tag来找对应的控件
@property(nonatomic) CGAffineTransform transform; // 通过该属性来设置控件旋转角度,缩放,平移属性
@property(nonatomic) CGRect frame; // 以父控件的左上角为坐标原点
@property(nonatomic) CGRect bounds; // 以自己左上角为坐标原点,所以bounds的x.y一般为0
@property(nonatomic) CGPoint point; // 以父控件的左上角为坐标原点(控件中心的位置)

- (void)addSubView:(UIView *)view; // 添加1个子控件
- (void)removeFromSuperView; // 从父控件中移除
- (UIView *)viewWithTag:(NSInteger) tag; // 根据1个tag找出对应的控件
- (CGSize)sizeThatFits:(CGSize)size;  // 默认是返回现有的视图大小
- (void)bringSubviewToFront:(UIView *)view;  // 将控件显示在最上面
- (void)sendSubviewToBack:(UIView *)view;  // 将控件显示在最后面
- (void)insertSubview:(UIView *)view atIndex:(NSInteger)index;  // 将控件插入到对应的index位置
- (void)insertSubview:(UIView *)view belowSubview:(UIView *)siblingSubview;  // 将控件view显示到子控件belowSubview的下面
- (void)insertSubview:(UIView *)view aboveSubview:(UIView *)siblingSubview;   // 将控件view显示到子控件aboveSubview的上面

五.UIButton的常见设置

- (void)setTitle:(NSString *)title forState:(UIControlState)state;  // 设置按钮文字
- (void)setTitleColor:(nullable UIColor *)color forState:(UIControlState)state ; // 设置按钮文字颜色
- (void)setImage:(nullable UIImage *)image forState:(UIControlState)state; // 设置按钮的小图片
- (void)setBackgroundImage:(nullable UIImage *)image forState:(UIControlState)state; // 设置按钮背影图片
- (nullable NSString *)titleForState:(UIControlState)state; //  获取按钮文字  
- (nullable UIColor *)titleColorForState:(UIControlState)state; //  获取按钮文字颜色
- (nullable UIImage *)imageForState:(UIControlState)state; //  获取按钮小图片
- (nullable UIImage *)backgroundImageForState:(UIControlState)state; //  获取按钮背景图片

六.UILabel的常见设置

@property(nonatomic,copy) NSString  *text;  // 显示文字
@property(nonatomic,retain) UIFont  *font;  // 显示字体
@property(nonatomic,retain) UIColor  *color;  // 显示文字颜色
@property(nonatomic) NSTextAlignment  textAlignment;  // 对齐模式(左/中/右)
+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;  // 系统默认字体
+ (UIFont *)boldSystemFontOfSize:(CGFloat)fontSize;  // 粗体
+ (UIFont *)italicSystemFontOfSize:(CGFloat)fontSize;  // 斜体

七.定时任务

  • 方法1:performSelector
// 1s后自动调用self的test方法
[self performSelector:@selector(test) withObject:nil afterDelay:1.5];
  • 方法2:GCD
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
    // 1s后自动执行这个block里面的代码
    self.hud.alpha = 0.0;
});
  • 方法3:NSTimer
// 1s后自动调用self的hideHUD方法
[NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(test) userInfo:nil repeats:NO];
// repeats如果为YES,意味着每隔1s都会调用一次self的hidHUD方法

八.常见问题

1. 控件看不见
- 宽度或者高度其实为0
- 位置不对(比如是个负数或者超大的数,已经超出屏幕)
- hidden == YES
- alpha <= 0.01
- 没有设置背景色、没有设置内容
- 可能是文字颜色和背景色一样
2. 项目中某个.m文件无法使用
    - 检查:Build Phases -> Compile Sources
- 项目里面的某个资源文件(比如plist、音频等)无法使用
    - 检查:Build Phases -> Copy Bundle Resources

你可能感兴趣的:(UI基础)