会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
循序渐进
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
下一页
2021年4月15日
Swift-WKWebView
摘要: WKWebView 的navigationDelegate方法含义 // 页面开始加载时调用 func webView(_ webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) { } // 当内容开
阅读全文
posted @ 2021-04-15 10:11 循序渐进A
阅读(511)
评论(0)
推荐(0)
2021年4月8日
Visual Studio Code
摘要: VScode安装下载地址:https://code.visualstudio.com
阅读全文
posted @ 2021-04-08 09:33 循序渐进A
阅读(213)
评论(0)
推荐(0)
Axure RP 9 Mac下载和汉化
摘要: Axsure官网 1.退出Axure 2.下载汉化文件 3.进入应用程序,选择Axure,右击选择【显示包内容】,把lang文件放在Resources文件夹下 4.重新打开Axure即可
阅读全文
posted @ 2021-04-08 09:25 循序渐进A
阅读(1995)
评论(0)
推荐(0)
2021年4月7日
Swift - UITableView简单使用
摘要: import UIKit class TableViewController: UIViewController { var tableView = UITableView() var dataList: NSMutableArray = [] override func viewDidLoad()
阅读全文
posted @ 2021-04-07 15:01 循序渐进A
阅读(210)
评论(0)
推荐(0)
2021年3月12日
截屏方法
摘要: - (UIImage *)captureScreen { UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow]; CGRect rect = [keyWindow bounds]; UIGraphicsBeginIma
阅读全文
posted @ 2021-03-12 08:37 循序渐进A
阅读(89)
评论(0)
推荐(0)
View 添加毛玻璃效果
摘要: 第一种方法: UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; UIVisualEffectView *effectView = [[UIVisualEffectView alloc] init
阅读全文
posted @ 2021-03-12 08:36 循序渐进A
阅读(87)
评论(0)
推荐(0)
UIWebView控件中,字体大小和字体样式的修改
摘要: 修改UIWebView控件中字体的样式: NSString *htmlString = [NSString stringWithContentsOfFile:self.webPath encoding:NSUTF8StringEncoding error:nil]; UIFont *font = [
阅读全文
posted @ 2021-03-12 08:35 循序渐进A
阅读(99)
评论(0)
推荐(0)
iOS检测网络状态
摘要: 有2种方式,可以在AppDelegate直接写: 第一种AFNetworkReachabilityManager: AFNetworkReachabilityManager *manage = [AFNetworkReachabilityManager >sharedManager]; [manag
阅读全文
posted @ 2021-03-12 08:29 循序渐进A
阅读(279)
评论(0)
推荐(0)
2021年3月4日
网页后缀html、htm、shtml、shtm有什么区别?
摘要: 每一个网页或者说是web页都有其固定的后缀名,不同的后缀名对应着不同的文件格式和不同的规则、协议、用法,最常见的web页的后缀名是.html和.htm,但这只是web页最基本的两种文件格式,今天我们来介绍一下web页的其它一些文件格式。 首先介绍一下html与htm 关于HTML,HTML(Hype
阅读全文
posted @ 2021-03-04 10:42 循序渐进A
阅读(1499)
评论(0)
推荐(0)
WKWebView加载HTML标签字体问题
摘要: WKPreferences *preferences = [[WKPreferences alloc] init]; preferences.minimumFontSize = 15.0f; NSMutableString *javascript = [NSMutableString string]
阅读全文
posted @ 2021-03-04 10:41 循序渐进A
阅读(294)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告