zoukankan      html  css  js  c++  java
  • 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

     
  • 相关阅读:
    菜根谭#317
    菜根谭#316
    菜根谭#315
    菜根谭#314
    菜根谭#313
    菜根谭#312
    菜根谭#311
    菜根谭#310
    菜根谭#309
    Matlab xpC启动盘
  • 原文地址:https://www.cnblogs.com/ievjai/p/4217186.html
Copyright © 2011-2022 走看看