mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-14 02:10:15 +00:00
[tvOS] Initial commit to make build run.
This commit is contained in:
parent
516e1f177d
commit
cc4f604ea3
@ -47,4 +47,5 @@ Pod::Spec.new do |spec|
|
|||||||
}
|
}
|
||||||
|
|
||||||
spec.ios.deployment_target = '7.0'
|
spec.ios.deployment_target = '7.0'
|
||||||
|
spec.tvos.deployment_target = '9.0'
|
||||||
end
|
end
|
||||||
|
|||||||
@ -641,7 +641,9 @@ NS_ASSUME_NONNULL_END
|
|||||||
@property (atomic, assign) UIViewContentMode contentMode; // default=UIViewContentModeScaleToFill
|
@property (atomic, assign) UIViewContentMode contentMode; // default=UIViewContentModeScaleToFill
|
||||||
|
|
||||||
@property (atomic, assign, getter=isUserInteractionEnabled) BOOL userInteractionEnabled; // default=YES (NO for layer-backed nodes)
|
@property (atomic, assign, getter=isUserInteractionEnabled) BOOL userInteractionEnabled; // default=YES (NO for layer-backed nodes)
|
||||||
|
#if TARGET_OS_IOS
|
||||||
@property (atomic, assign, getter=isExclusiveTouch) BOOL exclusiveTouch; // default=NO
|
@property (atomic, assign, getter=isExclusiveTouch) BOOL exclusiveTouch; // default=NO
|
||||||
|
#endif
|
||||||
@property (atomic, assign, nullable) CGColorRef shadowColor; // default=opaque rgb black
|
@property (atomic, assign, nullable) CGColorRef shadowColor; // default=opaque rgb black
|
||||||
@property (atomic, assign) CGFloat shadowOpacity; // default=0.0
|
@property (atomic, assign) CGFloat shadowOpacity; // default=0.0
|
||||||
@property (atomic, assign) CGSize shadowOffset; // default=(0, -3)
|
@property (atomic, assign) CGSize shadowOffset; // default=(0, -3)
|
||||||
|
|||||||
@ -137,7 +137,9 @@
|
|||||||
_textKitComponents.textView = self.textView;
|
_textKitComponents.textView = self.textView;
|
||||||
//_textKitComponents.textView = NO; // Unfortunately there's a bug here with iOS 7 DP5 that causes the text-view to only be one line high when scrollEnabled is NO. rdar://14729288
|
//_textKitComponents.textView = NO; // Unfortunately there's a bug here with iOS 7 DP5 that causes the text-view to only be one line high when scrollEnabled is NO. rdar://14729288
|
||||||
_textKitComponents.textView.delegate = self;
|
_textKitComponents.textView.delegate = self;
|
||||||
|
#if TARGET_OS_IOS
|
||||||
_textKitComponents.textView.editable = YES;
|
_textKitComponents.textView.editable = YES;
|
||||||
|
#endif
|
||||||
_textKitComponents.textView.typingAttributes = _typingAttributes;
|
_textKitComponents.textView.typingAttributes = _typingAttributes;
|
||||||
_textKitComponents.textView.returnKeyType = _returnKeyType;
|
_textKitComponents.textView.returnKeyType = _returnKeyType;
|
||||||
_textKitComponents.textView.accessibilityHint = _placeholderTextKitComponents.textStorage.string;
|
_textKitComponents.textView.accessibilityHint = _placeholderTextKitComponents.textStorage.string;
|
||||||
|
|||||||
@ -7,6 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#import <AsyncDisplayKit/ASImageNode.h>
|
#import <AsyncDisplayKit/ASImageNode.h>
|
||||||
|
#if TARGET_OS_IOS
|
||||||
#import <MapKit/MapKit.h>
|
#import <MapKit/MapKit.h>
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_BEGIN
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
@ -48,3 +49,5 @@ NS_ASSUME_NONNULL_BEGIN
|
|||||||
@end
|
@end
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_END
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif
|
||||||
@ -6,6 +6,7 @@
|
|||||||
* of patent rights can be found in the PATENTS file in the same directory.
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if TARGET_OS_IOS
|
||||||
#import "ASMapNode.h"
|
#import "ASMapNode.h"
|
||||||
#import <AsyncDisplayKit/ASDisplayNode+Subclasses.h>
|
#import <AsyncDisplayKit/ASDisplayNode+Subclasses.h>
|
||||||
#import <AsyncDisplayKit/ASDisplayNodeExtras.h>
|
#import <AsyncDisplayKit/ASDisplayNodeExtras.h>
|
||||||
@ -246,4 +247,5 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
#endif
|
||||||
@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
#import <AsyncDisplayKit/ASImageNode.h>
|
#import <AsyncDisplayKit/ASImageNode.h>
|
||||||
#import <AsyncDisplayKit/ASImageProtocols.h>
|
#import <AsyncDisplayKit/ASImageProtocols.h>
|
||||||
|
#if TARGET_OS_IOS
|
||||||
#import <Photos/Photos.h>
|
#import <Photos/Photos.h>
|
||||||
|
#endif
|
||||||
NS_ASSUME_NONNULL_BEGIN
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
@protocol ASMultiplexImageNodeDelegate;
|
@protocol ASMultiplexImageNodeDelegate;
|
||||||
@ -116,13 +116,14 @@ typedef NS_ENUM(NSUInteger, ASMultiplexImageNodeErrorCode) {
|
|||||||
*/
|
*/
|
||||||
@property (nullable, nonatomic, readonly) ASImageIdentifier displayedImageIdentifier;
|
@property (nullable, nonatomic, readonly) ASImageIdentifier displayedImageIdentifier;
|
||||||
|
|
||||||
|
#if TARGET_OS_IOS
|
||||||
/**
|
/**
|
||||||
* @abstract The image manager that this image node should use when requesting images from the Photos framework. If this is `nil` (the default), then `PHImageManager.defaultManager` is used.
|
* @abstract The image manager that this image node should use when requesting images from the Photos framework. If this is `nil` (the default), then `PHImageManager.defaultManager` is used.
|
||||||
|
|
||||||
* @see `+[NSURL URLWithAssetLocalIdentifier:targetSize:contentMode:options:]` below.
|
* @see `+[NSURL URLWithAssetLocalIdentifier:targetSize:contentMode:options:]` below.
|
||||||
*/
|
*/
|
||||||
@property (nonatomic, strong) PHImageManager *imageManager;
|
@property (nonatomic, strong) PHImageManager *imageManager;
|
||||||
|
#endif
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
||||||
@ -229,6 +230,7 @@ didFinishDownloadingImageWithIdentifier:(ASImageIdentifier)imageIdentifier
|
|||||||
*/
|
*/
|
||||||
- (nullable NSURL *)multiplexImageNode:(ASMultiplexImageNode *)imageNode URLForImageIdentifier:(ASImageIdentifier)imageIdentifier;
|
- (nullable NSURL *)multiplexImageNode:(ASMultiplexImageNode *)imageNode URLForImageIdentifier:(ASImageIdentifier)imageIdentifier;
|
||||||
|
|
||||||
|
#if TARGET_OS_IOS
|
||||||
/**
|
/**
|
||||||
* @abstract A PHAsset for the specific asset local identifier
|
* @abstract A PHAsset for the specific asset local identifier
|
||||||
* @param imageNode The sender.
|
* @param imageNode The sender.
|
||||||
@ -240,11 +242,11 @@ didFinishDownloadingImageWithIdentifier:(ASImageIdentifier)imageIdentifier
|
|||||||
* @return A PHAsset corresponding to `assetLocalIdentifier`, or nil if none is available.
|
* @return A PHAsset corresponding to `assetLocalIdentifier`, or nil if none is available.
|
||||||
*/
|
*/
|
||||||
- (nullable PHAsset *)multiplexImageNode:(ASMultiplexImageNode *)imageNode assetForLocalIdentifier:(NSString *)assetLocalIdentifier;
|
- (nullable PHAsset *)multiplexImageNode:(ASMultiplexImageNode *)imageNode assetForLocalIdentifier:(NSString *)assetLocalIdentifier;
|
||||||
|
#endif
|
||||||
@end
|
@end
|
||||||
|
|
||||||
#pragma mark -
|
#pragma mark -
|
||||||
|
#if TARGET_OS_IOS
|
||||||
@interface NSURL (ASPhotosFrameworkURLs)
|
@interface NSURL (ASPhotosFrameworkURLs)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -261,5 +263,6 @@ didFinishDownloadingImageWithIdentifier:(ASImageIdentifier)imageIdentifier
|
|||||||
options:(PHImageRequestOptions *)options;
|
options:(PHImageRequestOptions *)options;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
#endif
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_END
|
NS_ASSUME_NONNULL_END
|
||||||
@ -7,11 +7,11 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#import "ASMultiplexImageNode.h"
|
#import "ASMultiplexImageNode.h"
|
||||||
|
#if TARGET_OS_IOS
|
||||||
#import <AssetsLibrary/AssetsLibrary.h>
|
#import <AssetsLibrary/AssetsLibrary.h>
|
||||||
|
|
||||||
#import <Photos/Photos.h>
|
#import <Photos/Photos.h>
|
||||||
|
#endif
|
||||||
#import <libkern/OSAtomic.h>
|
#import <libkern/OSAtomic.h>
|
||||||
|
|
||||||
#import "ASAvailability.h"
|
#import "ASAvailability.h"
|
||||||
@ -112,6 +112,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
*/
|
*/
|
||||||
- (void)_fetchImageWithIdentifierFromCache:(id)imageIdentifier URL:(NSURL *)imageURL completion:(void (^)(UIImage *image))completionBlock;
|
- (void)_fetchImageWithIdentifierFromCache:(id)imageIdentifier URL:(NSURL *)imageURL completion:(void (^)(UIImage *image))completionBlock;
|
||||||
|
|
||||||
|
#if TARGET_OS_IOS
|
||||||
/**
|
/**
|
||||||
@abstract Loads the image corresponding to the given assetURL from the device's Assets Library.
|
@abstract Loads the image corresponding to the given assetURL from the device's Assets Library.
|
||||||
@param imageIdentifier The identifier for the image to be loaded. May not be nil.
|
@param imageIdentifier The identifier for the image to be loaded. May not be nil.
|
||||||
@ -131,7 +132,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
@param error An error describing why the load failed, if it failed; nil otherwise.
|
@param error An error describing why the load failed, if it failed; nil otherwise.
|
||||||
*/
|
*/
|
||||||
- (void)_loadPHAssetWithRequest:(ASPhotosFrameworkImageRequest *)request identifier:(id)imageIdentifier completion:(void (^)(UIImage *image, NSError *error))completionBlock;
|
- (void)_loadPHAssetWithRequest:(ASPhotosFrameworkImageRequest *)request identifier:(id)imageIdentifier completion:(void (^)(UIImage *image, NSError *error))completionBlock;
|
||||||
|
#endif
|
||||||
/**
|
/**
|
||||||
@abstract Downloads the image corresponding to the given imageIdentifier from the given URL.
|
@abstract Downloads the image corresponding to the given imageIdentifier from the given URL.
|
||||||
@param imageIdentifier The identifier for the image to be downloaded. May not be nil.
|
@param imageIdentifier The identifier for the image to be downloaded. May not be nil.
|
||||||
@ -262,7 +263,9 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
_dataSource = dataSource;
|
_dataSource = dataSource;
|
||||||
_dataSourceFlags.image = [_dataSource respondsToSelector:@selector(multiplexImageNode:imageForImageIdentifier:)];
|
_dataSourceFlags.image = [_dataSource respondsToSelector:@selector(multiplexImageNode:imageForImageIdentifier:)];
|
||||||
_dataSourceFlags.URL = [_dataSource respondsToSelector:@selector(multiplexImageNode:URLForImageIdentifier:)];
|
_dataSourceFlags.URL = [_dataSource respondsToSelector:@selector(multiplexImageNode:URLForImageIdentifier:)];
|
||||||
|
#if TARGET_OS_IOS
|
||||||
_dataSourceFlags.asset = [_dataSource respondsToSelector:@selector(multiplexImageNode:assetForLocalIdentifier:)];
|
_dataSourceFlags.asset = [_dataSource respondsToSelector:@selector(multiplexImageNode:assetForLocalIdentifier:)];
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark -
|
#pragma mark -
|
||||||
@ -455,6 +458,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_OS_IOS
|
||||||
// If it's an assets-library URL, we need to fetch it from the assets library.
|
// If it's an assets-library URL, we need to fetch it from the assets library.
|
||||||
if ([[nextImageURL scheme] isEqualToString:kAssetsLibraryURLScheme]) {
|
if ([[nextImageURL scheme] isEqualToString:kAssetsLibraryURLScheme]) {
|
||||||
// Load the asset.
|
// Load the asset.
|
||||||
@ -470,6 +474,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
finishedLoadingBlock(image, nextImageIdentifier, error);
|
finishedLoadingBlock(image, nextImageIdentifier, error);
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
else // Otherwise, it's a web URL that we can download.
|
else // Otherwise, it's a web URL that we can download.
|
||||||
{
|
{
|
||||||
// First, check the cache.
|
// First, check the cache.
|
||||||
@ -499,7 +504,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#if TARGET_OS_IOS
|
||||||
- (void)_loadALAssetWithIdentifier:(id)imageIdentifier URL:(NSURL *)assetURL completion:(void (^)(UIImage *image, NSError *error))completionBlock
|
- (void)_loadALAssetWithIdentifier:(id)imageIdentifier URL:(NSURL *)assetURL completion:(void (^)(UIImage *image, NSError *error))completionBlock
|
||||||
{
|
{
|
||||||
ASDisplayNodeAssertNotNil(imageIdentifier, @"imageIdentifier is required");
|
ASDisplayNodeAssertNotNil(imageIdentifier, @"imageIdentifier is required");
|
||||||
@ -609,7 +614,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
_phImageRequestOperation = newImageRequestOp;
|
_phImageRequestOperation = newImageRequestOp;
|
||||||
[phImageRequestQueue addOperation:newImageRequestOp];
|
[phImageRequestQueue addOperation:newImageRequestOp];
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
- (void)_fetchImageWithIdentifierFromCache:(id)imageIdentifier URL:(NSURL *)imageURL completion:(void (^)(UIImage *image))completionBlock
|
- (void)_fetchImageWithIdentifierFromCache:(id)imageIdentifier URL:(NSURL *)imageURL completion:(void (^)(UIImage *image))completionBlock
|
||||||
{
|
{
|
||||||
ASDisplayNodeAssertNotNil(imageIdentifier, @"imageIdentifier is required");
|
ASDisplayNodeAssertNotNil(imageIdentifier, @"imageIdentifier is required");
|
||||||
@ -708,7 +713,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
#if TARGET_OS_IOS
|
||||||
@implementation NSURL (ASPhotosFrameworkURLs)
|
@implementation NSURL (ASPhotosFrameworkURLs)
|
||||||
|
|
||||||
+ (NSURL *)URLWithAssetLocalIdentifier:(NSString *)assetLocalIdentifier targetSize:(CGSize)targetSize contentMode:(PHImageContentMode)contentMode options:(PHImageRequestOptions *)options
|
+ (NSURL *)URLWithAssetLocalIdentifier:(NSString *)assetLocalIdentifier targetSize:(CGSize)targetSize contentMode:(PHImageContentMode)contentMode options:(PHImageRequestOptions *)options
|
||||||
@ -720,4 +725,5 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
|||||||
return request.url;
|
return request.url;
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
#endif
|
||||||
@ -48,12 +48,13 @@
|
|||||||
[super didLoad];
|
[super didLoad];
|
||||||
|
|
||||||
ASCollectionView *cv = self.view;
|
ASCollectionView *cv = self.view;
|
||||||
|
#if TARGET_OS_IOS
|
||||||
cv.pagingEnabled = YES;
|
cv.pagingEnabled = YES;
|
||||||
|
cv.scrollsToTop = NO;
|
||||||
|
#endif
|
||||||
cv.allowsSelection = NO;
|
cv.allowsSelection = NO;
|
||||||
cv.showsVerticalScrollIndicator = NO;
|
cv.showsVerticalScrollIndicator = NO;
|
||||||
cv.showsHorizontalScrollIndicator = NO;
|
cv.showsHorizontalScrollIndicator = NO;
|
||||||
cv.scrollsToTop = NO;
|
|
||||||
|
|
||||||
// Zeroing contentInset is important, as UIKit will set the top inset for the navigation bar even though
|
// Zeroing contentInset is important, as UIKit will set the top inset for the navigation bar even though
|
||||||
// our view is only horizontally scrollable. This causes UICollectionViewFlowLayout to log a warning.
|
// our view is only horizontally scrollable. This causes UICollectionViewFlowLayout to log a warning.
|
||||||
|
|||||||
@ -73,8 +73,9 @@ NS_ASSUME_NONNULL_BEGIN
|
|||||||
|
|
||||||
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;
|
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
- (nullable NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath;
|
- (nullable NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
#if TARGET_OS_IOS
|
||||||
- (nullable NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath;
|
- (nullable NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
#endif
|
||||||
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;
|
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
|
||||||
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
|
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
// Created by Adlai Holler on 9/25/15.
|
// Created by Adlai Holler on 9/25/15.
|
||||||
// Copyright © 2015 Facebook. All rights reserved.
|
// Copyright © 2015 Facebook. All rights reserved.
|
||||||
//
|
//
|
||||||
|
#if TARGET_OS_IOS
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import <Photos/Photos.h>
|
#import <Photos/Photos.h>
|
||||||
|
|
||||||
@ -64,3 +64,4 @@ extern NSString *const ASPhotosURLScheme;
|
|||||||
@end
|
@end
|
||||||
|
|
||||||
// NS_ASSUME_NONNULL_END
|
// NS_ASSUME_NONNULL_END
|
||||||
|
#endif
|
||||||
@ -5,7 +5,7 @@
|
|||||||
// Created by Adlai Holler on 9/25/15.
|
// Created by Adlai Holler on 9/25/15.
|
||||||
// Copyright © 2015 Facebook. All rights reserved.
|
// Copyright © 2015 Facebook. All rights reserved.
|
||||||
//
|
//
|
||||||
|
#if TARGET_OS_IOS
|
||||||
#import "ASPhotosFrameworkImageRequest.h"
|
#import "ASPhotosFrameworkImageRequest.h"
|
||||||
#import "ASBaseDefines.h"
|
#import "ASBaseDefines.h"
|
||||||
#import "ASAvailability.h"
|
#import "ASAvailability.h"
|
||||||
@ -159,3 +159,4 @@ static NSString *const _ASPhotosURLQueryKeyCropHeight = @"crop_h";
|
|||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
#endif
|
||||||
@ -298,7 +298,7 @@
|
|||||||
_bridge_prologue;
|
_bridge_prologue;
|
||||||
_setToViewOnly(userInteractionEnabled, enabled);
|
_setToViewOnly(userInteractionEnabled, enabled);
|
||||||
}
|
}
|
||||||
|
#if TARGET_OS_IOS
|
||||||
- (BOOL)isExclusiveTouch
|
- (BOOL)isExclusiveTouch
|
||||||
{
|
{
|
||||||
_bridge_prologue;
|
_bridge_prologue;
|
||||||
@ -310,7 +310,7 @@
|
|||||||
_bridge_prologue;
|
_bridge_prologue;
|
||||||
_setToViewOnly(exclusiveTouch, exclusiveTouch);
|
_setToViewOnly(exclusiveTouch, exclusiveTouch);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
- (BOOL)clipsToBounds
|
- (BOOL)clipsToBounds
|
||||||
{
|
{
|
||||||
_bridge_prologue;
|
_bridge_prologue;
|
||||||
|
|||||||
@ -716,9 +716,11 @@ static UIColor *defaultTintColor = nil;
|
|||||||
if (_flags.setUserInteractionEnabled)
|
if (_flags.setUserInteractionEnabled)
|
||||||
view.userInteractionEnabled = userInteractionEnabled;
|
view.userInteractionEnabled = userInteractionEnabled;
|
||||||
|
|
||||||
|
#if TARGET_OS_IOS
|
||||||
if (_flags.setExclusiveTouch)
|
if (_flags.setExclusiveTouch)
|
||||||
view.exclusiveTouch = exclusiveTouch;
|
view.exclusiveTouch = exclusiveTouch;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (_flags.setShadowColor)
|
if (_flags.setShadowColor)
|
||||||
layer.shadowColor = shadowColor;
|
layer.shadowColor = shadowColor;
|
||||||
|
|
||||||
@ -943,10 +945,10 @@ static UIColor *defaultTintColor = nil;
|
|||||||
|
|
||||||
pendingState.userInteractionEnabled = view.userInteractionEnabled;
|
pendingState.userInteractionEnabled = view.userInteractionEnabled;
|
||||||
(pendingState->_flags).setUserInteractionEnabled = YES;
|
(pendingState->_flags).setUserInteractionEnabled = YES;
|
||||||
|
#if TARGET_OS_IOS
|
||||||
pendingState.exclusiveTouch = view.exclusiveTouch;
|
pendingState.exclusiveTouch = view.exclusiveTouch;
|
||||||
(pendingState->_flags).setExclusiveTouch = YES;
|
(pendingState->_flags).setExclusiveTouch = YES;
|
||||||
|
#endif
|
||||||
pendingState.shadowColor = layer.shadowColor;
|
pendingState.shadowColor = layer.shadowColor;
|
||||||
(pendingState->_flags).setShadowColor = YES;
|
(pendingState->_flags).setShadowColor = YES;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user