How do you make a CLLocationDegrees? It\'s not a float, so what is it?
According to the CLLocation documentation, CLLocationDegrees is simply a double. So to create one, you could do something as simple as this:
CLLocationDegrees
CLLocationDegrees degrees = 45;