`
zhangyaochun
  • 浏览: 2614457 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论
文章列表

UITextField

      UITextField       官网地址:https://developer.apple.com/documentation/uikit/uitextfield        [[UITextFieldalloc] initWithFrame: CGRectMake(20, 80, SCREEN_SIZE.width - 40, 30)];     可以设置左边还是右边放置图片     leftView 和 rightView   typedef NS_ENUM(NSInteger, UITextFieldViewMode) { UITextF ...

xcode快捷键

      作为编程的基本必备开发工具,熟练掌握快捷键也是非常必要的:       参考文章:https://www.cnblogs.com/W-Kr/p/5095154.html

xcassets 的使用

     一般图片资源可以放置到 .xcassets 后缀的文件夹中。     可以用矢量图、添加颜色、拉伸图片、图片渲染模式等     参考:https://www.jianshu.com/p/11b650054684     https://www.cnblogs.com/W-Kr/p/5381750.html
      iOS 中多会存在的文件:AppDelegate.m       为整个应用的一个代理,提供程序启动、退出等接口。        扩展阅读:https://www.cnblogs.com/xunziji/archive/2012/09/17/2689184.html       https://blog.csdn.net/chenyefei/article/details/53267883

UILabel

     UILabel         文本标签 - 可以设置多个属性。       比如文字对齐方式:        label.textAlignment = NSTextAlignmentCenter     typedef NS_ENUM(NSInteger, NSTextAlignment) { NSTextAlignmentLeft = 0, // Visually left aligned #if TARGET_OS_IPHONE NSTextAlignmentCenter = 1, // Visually ...

UIFont

      UIFont 提供了获取和设置字体的接口信息。       常用方法:       设置字体大小  systemFontOfSize           label2.font = [UIFont systemFontOfSize:30];          label2.font = [UIFont fontWithName:@"Georgia" size:30];

UIColor

     UIColor      官网地址:https://developer.apple.com/documentation/uikit/uicolor      UIColor *white1 = [UIColor whiteColor];          https://blog.csdn.net/zhanglizhi111/article/details/73105352

initWithFrame

     initWithFrame 用来初始化并返回一个新的视图对象,根据指定的 CGRect (尺寸)      用编程方式申明,创建 UIView 对象时候,使用 initWithFrame 方法。             地址:https://www.cnblogs.com/lv14/articles/5013262.html     https://www.jianshu.com/p/19c083751497     https://segmentfault.com/q/1010000011473155     https://www.cnblogs.c ...

NSMutableArray

     NSMutableArray          可变数组 - NSArray 的子类 - 它的全部功能多可以使用。       地址:https://www.cnblogs.com/tgacy/p/4027703.html

pch 文件

      以 .pch 作为后缀的预编译文件,存放程序中比较稳定不会被经常修改的代码       Xcode6 之前,新项目会自动在 Supporting files 文件夹下面创建一个“工程名 - Prefix.pch” 文件,之后,因为开发者吧大量的宏定义和头文件放到 pch 文件中,导致编译时间过长,为了加速编译速度,提高用户体验,去掉了。      地址:https://blog.csdn.net/li15809284891/article/details/53149806      https://www.jianshu.com/p/2b449a4ae20f

#import

     会包含被引用类的所有信息,包含被引用类的变量和方法:      https://www.cnblogs.com/dreamDeveloper/p/6023665.html        头文件找不到:https://blog.csdn.net/qq_28462647/article/details/48049939      https://www.cnblogs.com/sunfuyou/p/7681258.html       

UIWindow

      特殊的 UIView,一个 app 只有一个 UIWindow       参考地址:https://www.cnblogs.com/wendingding/p/3770052.html       makeKeyAndVisible 作用:去使被使用对象的主窗口到屏幕的最前端       地址:https://blog.csdn.net/Riven_wn/article/details/46603229
    参考了 2 篇:     1、https://blog.csdn.net/zaijianbali/article/details/40162111      2、https://segmentfault.com/q/1010000000160044
     有一种取巧的方式:      function getLocation (href) { var l = document.createElement('a'); l.href = href; return l; }  
   判断颜色的正则:      const hexColors = /^#([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$/ const rgbColors = /^[rR][gG][Bb][Aa]?[\(]([\s]*(2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?),){2}[\s]*(2[0-4][0-9]|25[0-5]|[01]?[0-9][0-9]?),?[\s]*(0\.\d{1,2}|1|0)?[\)]{1}$/g export function isColors (value) { return hexColors ...
Global site tag (gtag.js) - Google Analytics