摘要: iOS 中利用通过 setFrame 来固定一个 view 的位置,例如下面代码: let dView = UIView() dView.frame = CGRect(x: 100, y: 100, width: 100, height: 70.8) dView.backgroundColor = 阅读全文
posted @ 2023-08-13 19:27 夏风已过 阅读(17) 评论(0) 推荐(0)
摘要: 先看https是怎么携带cookie的: var properties: [HTTPCookiePropertyKey: Any] = [:] properties[.name] = "key" properties[.path] = "/" properties[.value] = "value" 阅读全文
posted @ 2023-08-13 18:59 夏风已过 阅读(143) 评论(0) 推荐(0)