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