Quantcast
Channel: Check if my IOS application is updated - Stack Overflow
Viewing all articles
Browse latest Browse all 9

Answer by K_Mohit for Check if my IOS application is updated

$
0
0

This worked for me..

func compareVersion(old:String,latest:String) -> Bool { if latest.compare(old, options: .numeric) == .orderedDescending {     return true }   return false }compareVersion(old: "3.1.5", latest: "3.2")

Viewing all articles
Browse latest Browse all 9

Trending Articles