WKWebView 是苹果在 WWDC 2014 上推出的新一代 webView 组件,用以替代 UIKit 中笨重难用、内存泄漏的 UIWebView。WKWebView 拥有60fps滚动刷新率、和 safari 相同的 JavaScript 引擎等优势。 简单的适配方法本文不再赘述,主要来说说 ...
分类:
Web程序 时间:
2020-04-28 13:14:42
阅读次数:
78
自定义Controller转场动画
当你想使用一个自定义的模态表示类型来呈现一个视图控制器时,设置它的modalPresentationStyle属性为custom,并将一个符合这个协议的对象分配给它的transitioningDelegate属性。当你展示那个视图控制器时,UIKit查询你的转换代... ...
分类:
其他好文 时间:
2020-04-18 18:30:18
阅读次数:
64
WebView 用于展示一个打开的网页。 UIViewController 用于展示在 SwiftUI 中打开 UIKit 的 UIViewController ,并且在 UIViewController 中打开 SwiftUI View。 Alert 用于展示一个弹框提醒,需要与点击事件关联起来。 ...
分类:
编程语言 时间:
2020-04-11 00:23:30
阅读次数:
60
SwiftUI 探索 - 闭包总结 SwiftUI 探索 - 状态和数据流 SwiftUI 探索 - 不透明返回类型 SwiftUI 探索 - Combine SwiftUI使用UIKit框架,控制器需实现UIViewControllerRepresentable协议,视图需实现UIViewRepr ...
分类:
编程语言 时间:
2020-04-11 00:04:24
阅读次数:
83
// // SceneDelegate.swift // 菜鸟教程 // // Created by udc on 2019/11/29. // Copyright © 2019 udc. All rights reserved. // import UIKit class SceneDelegat ...
分类:
移动开发 时间:
2020-04-03 13:57:05
阅读次数:
659
先看图,要先把Main.storyboard里面的大致画好 这里用到4个Label,2个Text Field和1个Button具体的看下图 然后这是ViewController.swift(也就是代码区),看图 附上代码(需要的自己复制粘贴很贴心吧): import UIKit class View ...
分类:
移动开发 时间:
2020-03-02 23:26:13
阅读次数:
149
看图 下面附上代码import UIKit class ViewController: UIViewController { @IBOutlet weak var display: UITextField! @IBAction func xianshi(_ sender: UIButton) { d ...
分类:
移动开发 时间:
2020-03-02 22:24:38
阅读次数:
68
代码不复杂,直接上代码: ImageViewButton.h // // ImageViewButton.h// // 带有图片、底部标题或者顶部的按钮 // // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface ImageVie ...
分类:
移动开发 时间:
2020-02-22 10:20:35
阅读次数:
97
利用tuntime的特性,创建一个UIViewController的类别,然后再pch文件里面调用即可,代码如下: .h #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UIViewController (SKPVCModel) ...
分类:
移动开发 时间:
2020-02-17 12:42:07
阅读次数:
112
在公司换了一台电脑之后发现git clone 和 npm install都失败,报错为 fatal: unable to access 'https://github.com/netease-im/NIM_PC_UIKit/': Failed to connect to 127.0.0.1 port ...
分类:
其他好文 时间:
2019-12-18 11:10:57
阅读次数:
369