I am adding text in UIlabel
, & its cost to performance(i have used build time analyser using this link). how can i optimise this code ?
for value in model?.offerings ?? [] {
offeringsLabel.text = offeringsLabel.text! + " | " + (value.name ?? "") + "," + (value.type ?? "")//this addition cost to performance
}
I also tried [ array].joined
but that doesn't make any diffrence
My suggestion is first to add a property
description
in theOffering
object to handlename
andvalue
properly (your solution puts always a comma betweenname
andvalue
regardless whethername
has a value or not)And rather than a loop use
compactMap
andjoined