I have an app that displays the timezones of different countries. Currently the code looks like this:
if indexPath.row == 0 || indexPath.row == 1 || indexPath.row == 2 || indexPath.row == 6 || indexPath.row == 7{
cell.aseanDate.text = dayFormatter.string(from: Date() as Date)
cell.aseanTime.text = dateFormatter2.string(from: Date() as Date)
cell.aseanTime.textAlignment = .center
cell.aseanTimeZone.text = "\(TimeZone(abbreviation: "UTC+07")!)"
}
The time itself is displayed properly but underaseanTimezone.text it displays GMT +0800(fixed)
Is it possible to change it so it displays the GMT but without the first zero and the word (fixed)?