viewcontroller.h @interface ViewController : UIViewController { //进度条对象 //一般用来表示下载和视频播放的进度 UIProgressView* _progressView; //滑动条的定义 //一般用来进行调整音乐音量的 UIS ...
分类:
其他好文 时间:
2020-09-18 00:21:35
阅读次数:
40
ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController { //定义一个定时器对象 //可以在每个固定时间发送消息 //调用此消息来调用相应的时间函数 //通过此函数可以在固定时间段来 ...
分类:
其他好文 时间:
2020-09-17 23:24:40
阅读次数:
33
1.创建一个 普通的viewController ,添加需要push的 UITabBarController /// 添加TabController的控制器 class JYJokerThroughRootController: JYBaseViewController { override fun ...
分类:
编程语言 时间:
2020-06-30 17:20:13
阅读次数:
75
前言 对于新手来说,iOS的几种跳转方式还挺繁琐的,下面就来一一介绍 1.不带任何布局文件的viewController之间的跳转 MyViewController *vc = [[MyViewController alloc]init]; [self.navigationController pu ...
分类:
移动开发 时间:
2020-06-30 12:53:28
阅读次数:
94
单例文件内容如下 .h @interface Single:NSObject @property(nonatomic, copy)NSURL *value; +(instancetype)sharedInstance; @end .m @implementation Single +(instanc ...
分类:
移动开发 时间:
2020-06-19 12:07:53
阅读次数:
87
如果页面 A 跳转到 页面 B,A 的 viewDidDisappear 方法和 B 的 viewDidAppear 方法哪个先调用? ViewController 为一级界面,BViewController 和 CViewController为两个二级界面 ViewController 为一级界面 ...
分类:
移动开发 时间:
2020-06-15 12:15:22
阅读次数:
97
```swift//// ViewController.swift// swiftT//// Created by wjwdive on 2019/1/9.// Copyright © 2019年 wjwdive. All rights reserved.//import UIKitstruct S... ...
分类:
编程语言 时间:
2020-05-25 09:27:52
阅读次数:
64
1. 控件为什么用weak修饰:控件已经被UIView强指针指向,如果用strong, 则viewController也将强指针指向控件, 在view销毁时可能无法销毁该控件。 2. command + shift + h : 模拟器回到主界面 command + shift + h(h连按两下) ...
分类:
移动开发 时间:
2020-04-19 10:53:12
阅读次数:
70
解决: 'NSUnknownKeyException', reason: '[<ViewController 0x7fdf7048b200> setValue:forUndefinedKey:]: this class is not key value coding-compliant for th ...
分类:
其他好文 时间:
2020-04-01 00:45:25
阅读次数:
52
1.当static关键字修饰局部变量时,只会初始化一次且在程序中只有一份内存; @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor ...
分类:
其他好文 时间:
2020-03-31 22:32:59
阅读次数:
80