From 62d7a3ee6835c2ff86b5183ad4ba865c4c1dd099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=80=E6=9C=88?= Date: Sat, 14 Sep 2024 18:49:03 +0800 Subject: [PATCH] Delete SensorsAnalyticsSDK/UIRelated/UIVIew+SensorsAnalytics.h --- .../UIRelated/UIVIew+SensorsAnalytics.h | 60 ------------------- 1 file changed, 60 deletions(-) delete mode 100644 SensorsAnalyticsSDK/UIRelated/UIVIew+SensorsAnalytics.h diff --git a/SensorsAnalyticsSDK/UIRelated/UIVIew+SensorsAnalytics.h b/SensorsAnalyticsSDK/UIRelated/UIVIew+SensorsAnalytics.h deleted file mode 100644 index 0bc4bda1..00000000 --- a/SensorsAnalyticsSDK/UIRelated/UIVIew+SensorsAnalytics.h +++ /dev/null @@ -1,60 +0,0 @@ -// -// UIView+SensorsAnalytics.h -// SensorsAnalyticsSDK -// -// Created by 陈玉国 on 2022/8/29. -// Copyright © 2015-2022 Sensors Data Co., Ltd. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol SAUIViewAutoTrackDelegate - -//UITableView -@optional -- (NSDictionary *)sensorsAnalytics_tableView:(UITableView *)tableView autoTrackPropertiesAtIndexPath:(NSIndexPath *)indexPath; - -//UICollectionView -@optional -- (NSDictionary *)sensorsAnalytics_collectionView:(UICollectionView *)collectionView autoTrackPropertiesAtIndexPath:(NSIndexPath *)indexPath; -@end - -@interface UIView (SensorsAnalytics) - -/// viewID -@property (nonatomic, copy) NSString *sensorsAnalyticsViewID; - -/// AutoTrack 时,是否忽略该 View -@property (nonatomic, assign) BOOL sensorsAnalyticsIgnoreView; - -/// AutoTrack 发生在 SendAction 之前还是之后,默认是 SendAction 之前 -@property (nonatomic, assign) BOOL sensorsAnalyticsAutoTrackAfterSendAction; - -/// AutoTrack 时,View 的扩展属性 -@property (nonatomic, strong) NSDictionary *sensorsAnalyticsViewProperties; - -@property (nonatomic, weak, nullable) id sensorsAnalyticsDelegate; - -@end - -@interface UIImage (SensorsAnalytics) - -@property (nonatomic, copy) NSString* sensorsAnalyticsImageName; - -@end - -NS_ASSUME_NONNULL_END