- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我最近停止使用 Alamofire
进行 HTTP 网络调用,因为现在在 swift 4 Apple 引入了 Codable
-protocol,与 相比,它非常强大和快速阿拉莫菲尔
。一切都按预期正常工作,甚至我的 react 比以前更快。但是有一个问题。在使用 Codable
协议(protocol)解析数据之前,我导航到其他 View 的速度非常快。但是现在我的导航有轻微的延迟,特别是当导航到我使用 JSONDecoder
获取响应的页面时。例如:我有 VC1 和 VC2,VC1 是一个静态页面,在 VC2 中我使用 JSONDecoder
并获取一些数据并将其显示在 collectionView
中。现在我在 VC1 中单击一个按钮,它在转到 VC2 之前只停止了一秒钟。我不知道为什么会这样。
VC1 中的代码:
@IBAction func gotoProductCollectionView(_ sender: UIButton) {
let viewController = self.storyboard?.instantiateViewController(withIdentifier: "productCollection") as! ProductCollectionViewController
self.navigationController?.pushViewController(viewController, animated: true)
}
VC2 中的代码:
class ProductCollectionViewController: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout {
@IBOutlet weak var productsTableView: UITableView!
var productsData = [ProductData]()
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
getProductData()
}
func getProductData() {
self.productsData = []
guard let productDataURL = URL(string: "MyURL") else {return}
DispatchQueue.global(qos: .background).async {
do {
let data = try Data(contentsOf: productDataURL)
self.productsData = try
JSONDecoder().decode([ProductData].self, from: data)
print(self.productsData)
print(self.productsData.count)
for productNames in self.productsData {
print(productNames.product_name!)
}
}catch let error {
print(error)
}
DispatchQueue.main.async {
self.productsTableView.reloadData()
}
}
}
}
产品模型对象:
struct ProductData: Codable {
var product_id: String?
var product_name: String?
var product_price: String?
var product_special_price: String?
var product_sale_of: String?
var product_brand: String?
var product_image: String?
private enum CodingKeys: String, CodingKey {
case product_id
case product_name
case product_price
case product_special_price
case product_sale_of
case product_brand
case product_image
}
init(product_id: String? = nil, product_name: String? = nil, product_price: String? = nil, product_special_price: String? = nil, product_sale_of: String? = nil, product_brand: String? = nil, product_image: String? = nil) {
self.product_id = product_id
self.product_name = product_name
self.product_price = product_price
self.product_special_price = product_special_price
self.product_sale_of = product_sale_of
self.product_brand = product_brand
self.product_image = product_image
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
product_id = try container.decode(String.self, forKey: .product_id)
product_name = try container.decode(String.self, forKey: .product_name)
product_price = try container.decode(String.self, forKey: .product_price)
product_special_price = try container.decode(String.self, forKey: .product_special_price)
product_brand = try container.decode(String.self, forKey: .product_brand)
product_image = try container.decode(String.self, forKey: .product_image)
if let value = try? container.decode(Int.self, forKey: .product_sale_of) {
product_sale_of = String(value)
} else {
product_sale_of = try container.decode(String.self, forKey: .product_sale_of)
}
}
}
最佳答案
答案就在这一行
let data = try Data(contentsOf: productDataURL)
显然,您在 DispatchQueue.main
您需要在单独的后台队列中执行此操作,然后再次从 main
更新 View 。不要忘记使用 .async
调用。
关于swift - 如何克服导航到其他 viewcontroller iOS swift 的延迟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56170109/
我现在在另一个 ViewController 之上展示了一个几乎透明的 ViewController,但它禁用了与下面的 ViewController 的交互。这是我目前使用的代码: topContr
我有一个 View Controller ,其工具栏上有 3 个 UIButtons,可以打开一个新的 View Controller 作为弹出窗口。我在 Storyboard 中创建了 Segues
这个问题在这里已经有了答案: Delegates in swift? (15 个答案) 关闭 3 年前。 在我的场景中,我试图在关闭 View Controller 期间将值从 ViewContro
假设我有两个 viewController,AViewController 和 BViewController。 AViewController 嵌入在 NavigationController 中(
我有 3 个 View Controller A、B 和 C。 我在 vcA 上,我使用 推送 vcB [self.navigationController pushViewController:vc
我想知道如何在 VC3 和 VC1 之间传递数据。 我拥有的是 Root View (VC1)。然后你输入一个tableView,如果你选择一个项目,你将进入tableView2(VC3) - 类别
我在使用 Unwind Segue 时遇到问题。我有 3 个 ViewController,它们都在名为 ViewController.swift 的类下。我试图获取最后一个 ViewControll
我有一个应用程序,其左上角有一个汉堡菜单。按下时,菜单会以 90% 的不透明度淡入当前 ViewController,显示应用程序的主要导航选项。 我使用下面的代码从页面呈现 viewControll
我的问题是,当我呈现一个 UIViewController 时,呈现的 View 变黑了。 我有一个名为 mainViewController 的 UIViewController,它是我窗口的 Ro
例如,当我呈现UIActivityViewController或UIAlertController时,我仍然可以看到背景viewController,我不想在viewContollerA中嵌入view
我从second viewController进入了third viewController,但是我不想回到第二个viewController,我需要直接回到我的第一个viewController,我
我的应用程序是标签栏(+ 导航)应用程序。在 FirstViewController 中,我调用 onModalView。 -(void) onFilter { FilterViewControl
Photo Sharing 部分是我写的一个ViewController,当我按下正确的项目时,PhotoSharingViewController 会动画出现。 这是我的代码: PhotoShari
我正在尝试在另一个 View Controller 中使用 subview Controller 的应用程序。我有一个 VC,我正在实例化另一个 VC,并在外部 VC 内使用它自己的 xib。 我使用
我正在寻找有关包含 ViewController 的滚动的想法。我需要知道包含 View Controller 的位置。我已经尝试过 UIPageViewController 但我无法让滚动委托(de
我有一个带有嵌入式 NavigationController 的基本 ViewController 来提供工具栏。 ToolBar 有三个按钮,用于通过 segue 调用 ViewController
我的应用程序中的伙计们,我在应用程序委托(delegate)方法中有一些代码 application:didFinishLaunchingWithOptions:确定初始 View Controlle
我遇到了一个问题,我将对此进行描述,并且发现了一些类似的问题,但我认为与我的问题无关。 我有一个 UITabBarController,其中有 2 个用于 VC1 和 VC2 的选项卡。 VC1 转到
我的应用程序中有一个计时器。如果计时器达到 0,则用户将被带到失败页面。当这种情况发生时,之前的 ViewController 没有被关闭,导致更多的内存被占用。 如果出现失败页面,我希望关闭之前的
在问这个问题之前,我当然做了一些调查。我在 google 和 stackoverflow 上找到的链接或主题之一是: How do I load another view controller fro
我是一名优秀的程序员,十分优秀!