zoukankan      html  css  js  c++  java
  • contentScrollView 是 UIViewController 的系统方法名

    1. contentScrollView 是 UIViewController 的系统方法名,不能在 UIViewController 使用,如使用会有意想不到的结果。

    1 // @property (nonatomic, strong) UIScrollView *contentScrollView;

    2. 测试方法:

    1 - (void)viewDidLoad {
    2     [super viewDidLoad];
    3     // Do any additional setup after loading the view, typically from a nib.
    4     
    5     if ([self respondsToSelector:@selector(contentScrollView)]) {
    6         NSLog(@"contentScrollView");
    7     }
    8 }
    时常一个人发呆,看到宁静的天空。
  • 相关阅读:
    gitlab 安装升级
    fping 命令
    sed 命令
    rm 命令
    sort 命令
    第十六单元
    第十五单元
    第十三单元
    第十二单元
    第十一单元
  • 原文地址:https://www.cnblogs.com/pinweyshg/p/7442427.html
Copyright © 2011-2022 走看看