You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.3 KiB
105 lines
3.3 KiB
4 years ago
|
/*
|
||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||
|
* or more contributor license agreements. See the NOTICE file
|
||
|
* distributed with this work for additional information
|
||
|
* regarding copyright ownership. The ASF licenses this file
|
||
|
* to you 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 <UIKit/UIKit.h>
|
||
|
#import <objc/runtime.h>
|
||
|
#import "WXType.h"
|
||
|
|
||
|
@class WXLength;
|
||
|
@class WXBoxShadow;
|
||
|
@interface WXConvert : NSObject
|
||
|
|
||
|
+ (BOOL)BOOL:(id)value;
|
||
|
|
||
|
/**
|
||
|
* @abstract convert value to CGFloat value
|
||
|
* @param value value
|
||
|
* @return CGFloat value
|
||
|
*/
|
||
|
+ (CGFloat)CGFloat:(id)value;
|
||
|
|
||
|
/**
|
||
|
* @abstract convert value to CGFloat value, notice that it will return nan if input value is unsupported
|
||
|
* @param value value
|
||
|
* @return CGFloat value or nan(unsupported input)
|
||
|
*/
|
||
|
+ (CGFloat)flexCGFloat:(id)value;
|
||
|
|
||
|
+ (NSUInteger)NSUInteger:(id)value;
|
||
|
+ (NSInteger)NSInteger:(id)value;
|
||
|
+ (NSString *)NSString:(id)value;
|
||
|
|
||
|
/**
|
||
|
* 750px Adaptive
|
||
|
*/
|
||
|
typedef CGFloat WXPixelType;
|
||
|
// @parameter scaleFactor: please use weexInstance's pixelScaleFactor property
|
||
|
+ (WXPixelType)WXPixelType:(id)value scaleFactor:(CGFloat)scaleFactor;
|
||
|
// WXPixelType that use flexCGFloat to convert
|
||
|
+ (WXPixelType)WXFlexPixelType:(id)value scaleFactor:(CGFloat)scaleFactor;
|
||
|
|
||
|
|
||
|
+ (UIViewContentMode)UIViewContentMode:(id)value;
|
||
|
+ (WXImageQuality)WXImageQuality:(id)value;
|
||
|
+ (WXImageSharp)WXImageSharp:(id)value;
|
||
|
+ (UIAccessibilityTraits)WXUIAccessibilityTraits:(id)value;
|
||
|
|
||
|
+ (UIColor *)UIColor:(id)value;
|
||
|
+ (CGColorRef)CGColor:(id)value;
|
||
|
+ (NSString *)HexWithColor:(UIColor *)color;
|
||
|
+ (WXBorderStyle)WXBorderStyle:(id)value;
|
||
|
typedef BOOL WXClipType;
|
||
|
+ (WXClipType)WXClipType:(id)value;
|
||
|
+ (WXPositionType)WXPositionType:(id)value;
|
||
|
|
||
|
+ (WXTextStyle)WXTextStyle:(id)value;
|
||
|
/**
|
||
|
* @abstract UIFontWeightRegular ,UIFontWeightBold,etc are not support by the system which is less than 8.2. weex sdk set the float value.
|
||
|
*
|
||
|
* @param value support normal,blod,100,200,300,400,500,600,700,800,900
|
||
|
*
|
||
|
* @return A float value.
|
||
|
*
|
||
|
*/
|
||
|
+ (CGFloat)WXTextWeight:(id)value;
|
||
|
+ (WXTextDecoration)WXTextDecoration:(id)value;
|
||
|
+ (NSTextAlignment)NSTextAlignment:(id)value;
|
||
|
+ (UIReturnKeyType)UIReturnKeyType:(id)value;
|
||
|
|
||
|
+ (WXScrollDirection)WXScrollDirection:(id)value;
|
||
|
+ (UITableViewRowAnimation)UITableViewRowAnimation:(id)value;
|
||
|
|
||
|
+ (UIViewAnimationOptions)UIViewAnimationTimingFunction:(id)value;
|
||
|
+ (CAMediaTimingFunction *)CAMediaTimingFunction:(id)value;
|
||
|
|
||
|
+ (WXVisibility)WXVisibility:(id)value;
|
||
|
|
||
|
+ (WXGradientType)gradientType:(id)value;
|
||
|
|
||
|
+ (WXLength *)WXLength:(id)value isFloat:(BOOL)isFloat scaleFactor:(CGFloat)scaleFactor;
|
||
|
+ (WXBoxShadow *)WXBoxShadow:(id)value scaleFactor:(CGFloat)scaleFactor;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface WXConvert (Deprecated)
|
||
|
|
||
|
+ (WXPixelType)WXPixelType:(id)value DEPRECATED_MSG_ATTRIBUTE("Use [WXConvert WXPixelType:scaleFactor:] instead");
|
||
|
|
||
|
@end
|