9 Notes Desember 2021 - LAST OF NINE NOTES -
1. Diffrence Color each of charactersThis code to select different color in one label@IBOutlet weak var label: UILabel! ... // diff color in character let text = "Sample text *" let range = (text as NSString).range(of: "*") let attributedString = NSMutableAttributedString(string:text) attributedString.addAttribute(NSAttributedString.Key.foregroundColor, value: UIColor.red , range: range) label.attributedText = attributedString 2. Navigation Push after set present navigationIn First...