You can do something like this.
let monthlyPriceDecimal = productItem.price.doubleValue/12 // This will divide the Yearly Value to Monthly.
then
self.lblYearly.text = "(productItem.priceLocale.currencySymbol ?? "") (String(format: "%.2f", monthlyPriceDecimal)) / Month"