• Objective-C 学习记录--toches、Motion/Size/Rect/Point/CGFloat/protocol


    - (void)touchesBegan

    touchesEnd

    touchesCancelled

    touchesMoved

    //代表的是手指在屏幕上的动作,开始 结束 取消 移动

    //还有就是代表摇动的方法

    -(void)motionBegan

    motionEnd

    motionCancelled

    隐藏键盘

    resignFirstResponser

    弹出键盘

    becomeFirstResponser

    //获取应用程序的Documents目录

    NSSearch *forDirectories = [NSDocumentDirectory NSUserDomainMesk , InDomain, YES];

    @property (nonatomic) UIViewControllerMode contentMode;

    @property (nonatomic)UIViewContentModeScale(TOFillAspectFill, AspectFit);

    //ToFill代表的是填充

    //AspectFill 内容填充 AspectFit 内容适应!

    CGSize和NSSize

    CGPoint和NSPointCGRect和NSRect

    CGFloat和NSFloat

    都是一样的用法~

    //@protocol

    @protocol Foo <other, NSObject>//应用此协议就必须实现的

    - (void)something;

    @optional//可以实现也可以不是实现

    ```

    @required

    ```

    @end

     
  • 相关阅读:
    Python 虚拟环境 virtualenv
    Python
    开发语言之---Java
    LINUX系统
    关系型数据库之MySQL
    开发语言之---Python
    框架之---Django
    递归/面向过程编程
    迭代器/生成器函数及协程函数的编写和使用
    装饰器的编写及使用
  • 原文地址:https://www.cnblogs.com/ievjai/p/4217186.html
Copyright © 2020-2023  润新知