AWFTidePeriod
Objective-C
@interface AWFTidePeriod : AWFWeatherObject
Swift
class AWFTidePeriod : AWFWeatherObject
An AWFTidePeriod
object contains tide data for a specific time period.
-
GMT date when the event took place.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSDate *timestamp;
Swift
var timestamp: Date? { get set }
-
Local time zone of the event location.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSTimeZone *timeZone;
Swift
var timeZone: TimeZone? { get set }
-
Type of tide, “l” for low and “h” for high.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *type;
Swift
var type: String? { get set }
-
Tide height in feet.
Declaration
Objective-C
@property (nonatomic) CGFloat heightFT;
Swift
var heightFT: CGFloat { get set }
-
Tide height in meters.
Declaration
Objective-C
@property (nonatomic) CGFloat heightM;
Swift
var heightM: CGFloat { get set }