SMIBusinessHours
Objective-C
@protocol SMIBusinessHours
Swift
protocol BusinessHours
Describes a set of business hours.
-
The start time for a given interval, in milliseconds since the epoch.
Declaration
Objective-C
@property (nonatomic, readonly) NSDate *_Nonnull startTime;
Swift
unowned(unsafe) var startTime: NSDate { get }
-
The end time for a given interval, in milliseconds since the epoch.
Declaration
Objective-C
@property (nonatomic, readonly) NSDate *_Nonnull endTime;
Swift
unowned(unsafe) var endTime: NSDate { get }