Skip to content

Commit

Permalink
Fix #1580
Browse files Browse the repository at this point in the history
  • Loading branch information
AAChartModel committed Jan 8, 2025
1 parent cb62455 commit a0e7947
Show file tree
Hide file tree
Showing 23 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion AAChartKit/AAChartCreator/AAChartModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ AAPropStatementAndPropSetFuncStatement(copy, AAChartModel, NSString *, subtitl
AAPropStatementAndPropSetFuncStatement(strong, AAChartModel, AAStyle *, subtitleStyle) //副标题文字样式
AAPropStatementAndPropSetFuncStatement(copy, AAChartModel, AAChartAlignType, subtitleAlign) //图表副标题文本水平对齐方式。可选的值有 “left”,”center“和“right”。 默认是:center.

AAPropStatementAndPropSetFuncStatement(copy, AAChartModel, NSString *, backgroundColor) //图表背景色(必须为十六进制的颜色色值如红色"#FF0000")
AAPropStatementAndPropSetFuncStatement(strong, AAChartModel, NSString *, backgroundColor) //图表背景色(必须为十六进制的颜色色值如红色"#FF0000")
AAPropStatementAndPropSetFuncStatement(strong, AAChartModel, NSArray *, colorsTheme) //图表主题颜色数组
AAPropStatementAndPropSetFuncStatement(strong, AAChartModel, NSArray<NSString *>*, categories) //如果图表的 X 轴上有分类(categories),那么在这个轴上,会使用这些分类的名称来表示数据点,而不是使用数字
AAPropStatementAndPropSetFuncStatement(strong, AAChartModel, NSArray *, series) //图表的数据列内容
Expand Down
6 changes: 3 additions & 3 deletions AAChartKit/AAChartCreator/AASeriesElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ AAPropStatementAndPropSetFuncStatement(copy, AASeriesElement, NSString *, stac
AAPropStatementAndPropSetFuncStatement(copy, AASeriesElement, NSString *, dashStyle)
AAPropStatementAndPropSetFuncStatement(strong, AASeriesElement, NSNumber *, threshold)
AAPropStatementAndPropSetFuncStatement(strong, AASeriesElement, NSNumber *, lineWidth) //折线图、曲线图、直方折线图、折线填充图、曲线填充图、直方折线填充图的线条宽度
AAPropStatementAndPropSetFuncStatement(copy, AASeriesElement, NSString *, borderColor) //The border color, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
AAPropStatementAndPropSetFuncStatement(strong, AASeriesElement, NSString *, borderColor) //The border color, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
AAPropStatementAndPropSetFuncStatement(strong, AASeriesElement, NSNumber *, borderWidth) //The border width, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
AAPropStatementAndPropSetFuncStatement(strong, AASeriesElement, NSNumber *, borderRadius) //The corner radius of the border surrounding each column or bar.
AAPropStatementAndPropSetFuncStatement(strong, AASeriesElement, NSNumber *, borderRadiusTopLeft)
Expand Down Expand Up @@ -98,7 +98,7 @@ AAPropStatementAndPropSetFuncStatement(assign, AASeriesElement, BOOL , clip

@interface AADataElement : NSObject

AAPropStatementAndPropSetFuncStatement(copy , AADataElement, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AADataElement, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AADataElement, AADataLabels *, dataLabels)
AAPropStatementAndPropSetFuncStatement(strong, AADataElement, AAMarker *, marker)
AAPropStatementAndPropSetFuncStatement(copy , AADataElement, NSString *, name)
Expand All @@ -112,7 +112,7 @@ AAPropStatementAndPropSetFuncStatement(strong, AADataElement, id, select
@interface AAZonesElement : NSObject

AAPropStatementAndPropSetFuncStatement(strong, AAZonesElement, NSNumber *, value)
AAPropStatementAndPropSetFuncStatement(copy, AAZonesElement, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AAZonesElement, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AAZonesElement, NSString *, fillColor)
AAPropStatementAndPropSetFuncStatement(copy, AAZonesElement, NSString *, dashStyle)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
@interface AACrosshair : NSObject

AAPropStatementAndPropSetFuncStatement(copy, AACrosshair, NSString *, dashStyle) //准星线样式
AAPropStatementAndPropSetFuncStatement(copy, AACrosshair, NSString *, color) //准星线颜色
AAPropStatementAndPropSetFuncStatement(strong, AACrosshair, NSString *, color) //准星线颜色
AAPropStatementAndPropSetFuncStatement(strong, AACrosshair, NSNumber *, width) //准星线宽度
AAPropStatementAndPropSetFuncStatement(strong, AACrosshair, NSNumber *, zIndex) //准星线的层叠值, 增大层叠值可以让准星线显示在数据里或网格线的上方。 默认是:2.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

@interface AALineStyle : NSObject

AAPropStatementAndPropSetFuncStatement(copy, AALineStyle, NSString *, color) //准星线颜色
AAPropStatementAndPropSetFuncStatement(strong, AALineStyle, NSString *, color) //准星线颜色
AAPropStatementAndPropSetFuncStatement(copy, AALineStyle, NSString *, dashStyle) //准星线样式
AAPropStatementAndPropSetFuncStatement(strong, AALineStyle, NSNumber *, width) //准星线宽度
AAPropStatementAndPropSetFuncStatement(strong, AALineStyle, NSNumber *, zIndex) //准星线的层叠值,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@

@interface AAPlotBandsElement : NSObject

AAPropStatementAndPropSetFuncStatement(copy, AAPlotBandsElement, NSString *, borderColor)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, NSString *, borderColor)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, NSNumber *, borderRadius)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, NSNumber *, borderWidth)
AAPropStatementAndPropSetFuncStatement(copy, AAPlotBandsElement, NSString *, className)
AAPropStatementAndPropSetFuncStatement(copy, AAPlotBandsElement, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, NSNumber *, from)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, NSNumber *, innerRadius)
AAPropStatementAndPropSetFuncStatement(strong, AAPlotBandsElement, AALabel *, label)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

@interface AAPlotLinesElement : NSObject

AAPropStatementAndPropSetFuncStatement(copy, AAPlotLinesElement, NSString *, color) //基线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAPlotLinesElement, NSString *, color) //基线颜色
AAPropStatementAndPropSetFuncStatement(copy, AAPlotLinesElement, NSString *, dashStyle) //基线样式Dash,Dot,Solid,默认Solid
AAPropStatementAndPropSetFuncStatement(strong, AAPlotLinesElement, NSNumber *, width) //基线宽度
AAPropStatementAndPropSetFuncStatement(strong, AAPlotLinesElement, NSNumber *, value) //显示位置
Expand Down
12 changes: 6 additions & 6 deletions AAChartKit/AAOptionsModel/AAAxis/AAXAxis.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

@interface AAXAxis : NSObject

AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, alternateGridColor) //间隔网格背景, 当指定该参数时,相邻刻度线之间会用对应的颜色来绘制颜色分辨带.
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSString *, alternateGridColor) //间隔网格背景, 当指定该参数时,相邻刻度线之间会用对应的颜色来绘制颜色分辨带.
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, AAAxisTitle *, title)
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, AAChartAxisType, type)
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, AADateTimeLabelFormats *, dateTimeLabelFormats)
Expand All @@ -48,25 +48,25 @@ AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSArray<AAPlotLinesEleme
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSArray *, categories)
AAPropStatementAndPropSetFuncStatement(assign, AAXAxis, BOOL, reversed)
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, lineWidth) //x轴轴线宽度
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, lineColor) //x轴轴线线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSString *, lineColor) //x轴轴线线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, linkedTo)
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, max) //x轴最大值
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, min) //x轴最小值
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minPadding)
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minRange)
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minTickInterval) //最小间隔
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber /*BOOL*/*, minorTicks) //是否显示次刻度线
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, minorGridLineColor) //次网格线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSString *, minorGridLineColor) //次网格线颜色
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, minorGridLineDashStyle) //次网格线条样式
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minorGridLineWidth) //次网格线宽度
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, minorTickColor) //次刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSString *, minorTickColor) //次刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minorTickInterval)
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minorTickLength) //次刻度线长度
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, minorTickPosition) //次刻度线位置
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, minorTickWidth) // 次刻度线宽度

AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, gridLineWidth) //x轴网格线宽度
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, gridLineColor) //x轴网格线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSString *, gridLineColor) //x轴网格线颜色
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, gridLineDashStyle) //x轴网格线样式
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, gridZIndex) //网格线的层叠值(zIndex) 默认是:1.
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, offset) //x轴垂直偏移
Expand All @@ -76,7 +76,7 @@ AAPropStatementAndPropSetFuncStatement(assign, AAXAxis, BOOL, opposite) //
AAPropStatementAndPropSetFuncStatement(assign, AAXAxis, BOOL , startOnTick) //Whether to force the axis to start on a tick. Use this option with the minPadding option to control the axis start. 默认是:false.
AAPropStatementAndPropSetFuncStatement(assign, AAXAxis, BOOL , endOnTick) //是否强制将坐标轴结束于刻度线,可以通过本属性及 maxPadding 来控制坐标轴的结束位置。 默认是:false.
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, AACrosshair *, crosshair) //准星线样式设置
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, tickColor) //x轴轴线下方刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSString *, tickColor) //x轴轴线下方刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, tickInterval) //x轴刻度点间隔数(设置每隔几个点显示一个 X轴的内容)
AAPropStatementAndPropSetFuncStatement(copy, AAXAxis, NSString *, tickmarkPlacement) //本参数只对分类轴有效。 当值为 on 时刻度线将在分类上方显示;当值为 between 时,刻度线将在两个分类中间显示。当 tickInterval 为 1 时,默认是 between,其他情况默认是 on。 默认是:null.
AAPropStatementAndPropSetFuncStatement(strong, AAXAxis, NSNumber *, tickWidth) //坐标轴刻度线的宽度,设置为 0 时则不显示刻度线
Expand Down
14 changes: 7 additions & 7 deletions AAChartKit/AAOptionsModel/AAAxis/AAYAxis.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ AACHARTKIT_EXTERN AAChartYAxisGridLineInterpolationType const AAChartYAxisGridLi
@interface AAYAxis : NSObject

AAPropStatementAndPropSetFuncStatement(assign, AAYAxis, BOOL, allowDecimals) //y轴是否允许显示小数
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, alternateGridColor) //间隔网格背景, 当指定该参数时,相邻刻度线之间会用对应的颜色来绘制颜色分辨带.
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSString *, alternateGridColor) //间隔网格背景, 当指定该参数时,相邻刻度线之间会用对应的颜色来绘制颜色分辨带.
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, AAAxisTitle *, title)
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, AAChartAxisType, type)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, AADateTimeLabelFormats *, dateTimeLabelFormats)
Expand All @@ -52,24 +52,24 @@ AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSArray<AAPlotLinesEleme
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSArray *, categories)
AAPropStatementAndPropSetFuncStatement(assign, AAYAxis, BOOL, reversed)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, gridLineWidth) // y 轴网格线宽度
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, gridLineColor) // y 轴网格线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSString *, gridLineColor) // y 轴网格线颜色
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, gridLineDashStyle) //网格线线条样式,所有可用的线条样式参考:Highcharts线条样式
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, gridZIndex) //网格线的层叠值(zIndex) 默认是:1.
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, AAChartYAxisGridLineInterpolationType, gridLineInterpolation) //Polar charts only. Whether the grid lines should draw as a polygon with straight lines between categories, or as circles. Can be either circle or polygon. 默认是:null.
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, AALabels *, labels) //用于设置 y 轴文字相关的
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, lineWidth) // y 轴线宽度
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, lineColor) // y 轴线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSString *, lineColor) // y 轴线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, offset) // y 轴线水平偏移

AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, max) //y轴最大值
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, min) //y轴最小值(设置为0就不会有负数)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, minPadding) //Padding of the min value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the lowest data value to appear on the edge of the plot area. 默认是:0.05.
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, minRange)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, minTickInterval) //最小间隔
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, minorGridLineColor) //次网格线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSString *, minorGridLineColor) //次网格线颜色
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, minorGridLineDashStyle) //次网格线条样式
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, minorGridLineWidth) //次网格线宽度
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, minorTickColor) //次刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSString *, minorTickColor) //次刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, minorTickInterval)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, minorTickLength) //次刻度线长度
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, minorTickPosition) //次刻度线位置
Expand All @@ -82,8 +82,8 @@ AAPropStatementAndPropSetFuncStatement(assign, AAYAxis, BOOL , endOnTick) /
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, AACrosshair*, crosshair) //准星线样式设置
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, AALabels *, stackLabels)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, tickAmount)//刻度总数
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, tickColor) // 刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, tickInterval)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSString *, tickColor) // 刻度线颜色
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, tickInterval)
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, tickWidth) //坐标轴刻度线的宽度,设置为 0 时则不显示刻度线
AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, tickLength)//坐标轴刻度线的长度。 默认是:10.
AAPropStatementAndPropSetFuncStatement(copy, AAYAxis, NSString *, tickPosition) //刻度线相对于轴线的位置,可用的值有 inside 和 outside,分别表示在轴线的内部和外部。 默认是:outside.
Expand Down
8 changes: 4 additions & 4 deletions AAChartKit/AAOptionsModel/AALabel/AADataLabels.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, distanc
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, NSString *, verticalAlign)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, x)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, y)
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, NSString *, color)
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, NSString *, backgroundColor)
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, NSString *, borderColor)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSString *, color)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSString *, backgroundColor)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSString *, borderColor)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, borderRadius)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, borderWidth)
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, AAChartDataLabelsShapeType, shape)
Expand All @@ -129,7 +129,7 @@ AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, AAChartDataLabelsOv
AAPropStatementAndPropSetFuncStatement(assign, AADataLabels, BOOL , softConnector)//Whether to render the connector as a soft arc or a line with sharp break. Only useful for pie, pyramid and funnel chart
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSDictionary *, textPath)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSDictionary *, filter)
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, NSString *, connectorColor)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSString *, connectorColor)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, connectorPadding)
AAPropStatementAndPropSetFuncStatement(copy, AADataLabels, NSString *, connectorShape)
AAPropStatementAndPropSetFuncStatement(strong, AADataLabels, NSNumber *, connectorWidth)
Expand Down
4 changes: 2 additions & 2 deletions AAChartKit/AAOptionsModel/AALabel/AAStyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
//Styles for the label. 默认是:{"color": "contrast", "fontSize": "11px", "fontWeight": "bold", "textOutline": "1px 1px contrast" }.
//https://api.highcharts.com/class-reference/Highcharts.CSSObject#background
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, background)
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, backgroundColor)
AAPropStatementAndPropSetFuncStatement(strong, AAStyle, NSString *, backgroundColor)
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, border)
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, borderRadius)
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, color)//设置文字的颜色,可修改为 #ff00ff 任意的这种十六进制字符串
AAPropStatementAndPropSetFuncStatement(strong, AAStyle, NSString *, color)//设置文字的颜色,可修改为 #ff00ff 任意的这种十六进制字符串
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, cursor)
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, fontFamily)
AAPropStatementAndPropSetFuncStatement(copy, AAStyle, NSString *, fontSize)//文字大小
Expand Down
Loading

0 comments on commit a0e7947

Please sign in to comment.