A lot of apps pop up a transparent view with rounded corners and an activityIndicator when running a time consuming operation.
How is this rounding done and is it po
As of iPhone SDK 3.0, you can simply use the layer's cornerRadius property. E.g.:
cornerRadius
view.layer.cornerRadius = 10.0;
Along the same lines, you can change the view's border color and width:
view.layer.borderColor = [[UIColor grayColor] CGColor]; view.layer.borderWidth = 1;