AWFObservationCalloutContentView
@interface AWFObservationCalloutContentView : UIView <AWFDataLoading>
An AWFObservationCalloutContentView
object is a UIView
subclass that displays a temperature value and weather icon within a weather
map’s callout view. This class is typically used on a long press gesture on the weather map to display current weather conditions at that coordinate.
-
The temperature text label.
Declaration
Objective-C
@property (readonly, strong, nonatomic) UILabel *tempLabel;
Swift
var tempLabel: UnsafeMutablePointer<Int32>! { get }
-
The icon image view.
Declaration
Objective-C
@property (readonly, strong, nonatomic) UIImageView *iconView;
Swift
var iconView: UnsafeMutablePointer<Int32>! { get }
-
A Boolean value indicated whether the view currently has data.
Declaration
Objective-C
@property (readonly, nonatomic) BOOL hasData;
Swift
var hasData: Bool { get }
-
A Boolean value indicating whether the view is currently loading data.
Declaration
Objective-C
@property (readonly, nonatomic) BOOL isLoading;
Swift
var isLoading: Bool { get }