I am embarrassed to ask this, but I am running iOS 6.1 and the following line returns False:
if ([[UIDevice currentDevice].systemVersion floatValue] >= 6.1)
yet the following returns True:
if ([[UIDevice currentDevice].systemVersion floatValue] >= 6.1f)
Why?