-
Notifications
You must be signed in to change notification settings - Fork 0
/
HealthKitUI.framework.h
39 lines (30 loc) · 980 Bytes
/
HealthKitUI.framework.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ========== HealthKitUI.framework/Headers/HealthKitUI.h
//
// HealthKitUI.h
// HealthKitUI
//
// Copyright (c) 2015 Apple. All rights reserved.
//
#import <HealthKitUI/HKActivityRingView.h>
// ========== HealthKitUI.framework/Headers/HKActivityRingView.h
//
// HKActivityRingView.h
// HealthKitUI
//
// Copyright (c) 2015 Apple. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <HealthKit/HKDefines.h>
@class HKActivitySummary;
NS_ASSUME_NONNULL_BEGIN
HK_EXTERN API_AVAILABLE(ios(9.3), watchos(2.2))
@interface HKActivityRingView : UIView
/**
@property activitySummary
@abstract The activity summary that is currently being displayed in the activity ring view
@discussion Setting this property directly will not animate ring changes
*/
@property (nonatomic, strong, nullable) HKActivitySummary *activitySummary;
- (void)setActivitySummary:(nullable HKActivitySummary *)activitySummary animated:(BOOL)animated;
@end
NS_ASSUME_NONNULL_END