@interface ViewController () @property (weak, nonatomic) IBOutlet lwRedView *redView; @property (weak, nonatomic) IBOutlet UIButton *lwbtn; @property ... ...
分类:
其他好文 时间:
2019-06-01 13:57:40
阅读次数:
110
參考文章来自objcio站点 为什么要编写轻量级的View Controller?? 1、作为iOS项目中最大的文件,ViewControllers中的代码复用率差点儿是最低的 2、重量级的View COntroller加大了測试的复杂度。 所以关注ViewController的瘦身。把业务逻辑、网 ...
分类:
其他好文 时间:
2019-05-02 19:02:17
阅读次数:
139
在直播app 软件中启动广告与引导图是目前主流app中非常常见的功能,这里简单提供一个开发直播app 软件时iOS端实现app引导图或者启动广告的思路,新建一个viewcontroller来实现。
分类:
移动开发 时间:
2019-04-28 17:04:35
阅读次数:
157
#import @interface ViewController () @property (nonatomic,retain) UIButton *beginTestBtn; @property (nonatomic,retain) UILabel *textLabel; @end @imple... ...
分类:
移动开发 时间:
2019-03-09 16:39:05
阅读次数:
293
1、时钟 1、QClockView.h 2、QClockView.m 3、ViewController.m 4、效果 ...
分类:
其他好文 时间:
2019-02-18 23:15:01
阅读次数:
189
1、引导页动画 1.1 ViewController.m 1.2 效果 ...
分类:
其他好文 时间:
2019-02-18 23:10:21
阅读次数:
229
https://blog.csdn.net/lengshengren/article/details/53887873 2016年12月26日 17:32:19 NSButton 外观与属性 打开storyboard 面版,发现NSButton 有很多类型。先在ViewController 拖个Pu ...
分类:
系统相关 时间:
2019-01-29 13:55:31
阅读次数:
226
import UIKit //1.加速器框架 import CoreMotion class ViewController: UIViewController { //1.创建运动管理者 必须设置为 全局的 let manager = CMMotionManager() override func ... ...
分类:
移动开发 时间:
2019-01-18 12:23:39
阅读次数:
207
```swift
import UIKit class ViewController: UIViewController{ var stepper:UIStepper! var label:UILabel! override func viewDidLoad() { super.viewDidLoa... ...
分类:
编程语言 时间:
2019-01-07 01:39:43
阅读次数:
248
```swift
import UIKit class ViewController: UIViewController,UIPickerViewDataSource,UIPickerViewDelegate { var pickerView:UIPickerView! override func ... ...
分类:
编程语言 时间:
2019-01-07 01:33:52
阅读次数:
195