- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到了应用程序用户关于 CorePlot 框架内错误的报告。它并不总是发生,我自己也无法检测到如何使其崩溃的模式。我想知道是否可以采取一些措施来避免这次崩溃。
Exception Type: SIGSEGV
Exception Codes: SEGV_MAPERR at 0x4c69ef75bec0
Crashed Thread: 0
Application Specific Information:
Selector name found in current argument registers: retain
Thread 0 Crashed:
0 libobjc.A.dylib 0x00007fff885c80dd objc_msgSend + 29
1 AppKit 0x00007fff8f045916 +[NSGraphicsContext setCurrentContext:] + 76
2 CorePlot 0x0000000104f10119 CPTPopCGContext + 40
3 CorePlot 0x0000000104f10051 -[NSAttributedString(CPTPlatformSpecificAttributedStringExtensions) drawInRect:inContext:] + 80
4 CorePlot 0x0000000104f05822 -[CPTTextLayer renderAsVectorInContext:] + 513
5 CorePlot 0x0000000104f06058 -[CPTLayer drawInContext:] + 55
6 QuartzCore 0x00007fff82dfe0c3 _ZN2CA5Layer8display_Ev + 657
7 QuartzCore 0x00007fff82dfc7fd _ZN2CA5Layer17display_if_neededEPNS_11TransactionE + 603
8 QuartzCore 0x00007fff82dfbe81 _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 35
9 QuartzCore 0x00007fff82dfb612 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 242
10 QuartzCore 0x00007fff82dfb3ae _ZN2CA11Transaction6commitEv + 390
11 QuartzCore 0x00007fff82e09f19 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 71
12 CoreFoundation 0x00007fff8b53f127 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
13 CoreFoundation 0x00007fff8b53f080 __CFRunLoopDoObservers + 368
14 CoreFoundation 0x00007fff8b530bf8 CFRunLoopRunSpecific + 328
15 HIToolbox 0x00007fff9130f56f RunCurrentEventLoopInMode + 235
16 HIToolbox 0x00007fff9130f2ea ReceiveNextEventCommon + 431
17 HIToolbox 0x00007fff9130f12b _BlockUntilNextEventMatchingListInModeWithFilter + 71
18 AppKit 0x00007fff8f0719bb _DPSNextEvent + 978
19 AppKit 0x00007fff8f070f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
20 AppKit 0x00007fff8f066bf3 -[NSApplication run] + 594
21 AppKit 0x00007fff8efe3354 NSApplicationMain + 1832
22 MyApp 0x0000000104afcc3a main (ReceiptCheck.h:4779)
23 libdyld.dylib 0x00007fff830fd5c9 start + 1
我使用 CorePlot 绘制 2 种图形:饼图和条形图,我同时显示 2 种图形,看一下:
My app uses ARC and runs only in yosemite. Here is my code:
-(void)createGraphs{
[self updateChartTextStyles];
self.completedGraph = [self createGraphWithHostView:self.completedGraphHostingView];
self.uncompletedGraph = [self createGraphWithHostView:self.uncompletedGraphHostingView];
}
-(CPTXYGraph *)createGraphWithHostView:(CPTGraphHostingView *)hostView{
CPTXYGraph *graph = [[CPTXYGraph alloc]initWithFrame:self.completedGraphHostingView.bounds];
graph.plotAreaFrame.fill = [CPTFill fillWithColor:[CPTColor clearColor]];
graph.paddingBottom = 0;
graph.paddingTop = 0;
graph.paddingLeft = 0;
graph.paddingRight = 0;
graph.masksToBorder = NO;
[graph setTitleTextStyle:self.chartTitleStyle];
hostView.hostedGraph = graph;
return graph;
}
-(void)updateChartTextStyles{
CPTMutableTextStyle *textStyle = [CPTMutableTextStyle textStyle];
textStyle.fontName = [[ThemeManager mainFont] labelFont].fontName;
textStyle.fontSize = [[[ThemeManager mainFont] labelFont] pointSize];
textStyle.color = [CPTColor colorWithCGColor:[NSColor blackColor].CGColor];
self.chartLabelStyle = textStyle;
textStyle = [CPTMutableTextStyle textStyle];
textStyle.fontName = [[ThemeManager mainFont].titleFont fontName];
textStyle.fontSize = [[ThemeManager mainFont].titleFont pointSize];
textStyle.color = [CPTColor colorWithCGColor:[NSColor blackColor].CGColor];
self.chartTitleStyle = textStyle;
}
-(void)removeAllPlotsInGraph:(CPTGraph *)graph{
NSArray *allPlots = [graph.allPlots copy];
for (CPTPlot *plot in allPlots) {
[graph removePlot:plot];
}
}
-(void)setPieChartPlotToGraph:(CPTGraph *)graph withIdentifier:(NSString *)identifier{
[self removeAllPlotsInGraph:graph];
CPTPieChart *pieChart = [[CPTPieChart alloc]init];
pieChart.dataSource = self;
pieChart.delegate = self;
pieChart.pieRadius = (graph.hostingView.bounds.size.height*.7)/2;
pieChart.identifier = identifier;
CPTMutableShadow *shadow = [CPTMutableShadow shadow];
shadow.shadowColor = [CPTColor colorWithCGColor:[NSColor grayColor].CGColor];
shadow.shadowBlurRadius = 3;
shadow.shadowOffset = CGSizeMake(1, -1);
[pieChart setShadow:shadow];
graph.plotAreaFrame.paddingTop = 0;
graph.plotAreaFrame.paddingRight = 0;
graph.plotAreaFrame.paddingBottom = 0;
graph.plotAreaFrame.paddingLeft = 0;
[graph.axisSet setHidden:YES];
CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.yRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(0)
length:CPTDecimalFromInt(10)];
plotSpace.xRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(0)
length:CPTDecimalFromInt(10)];
[graph addPlot:pieChart];
}
-(CPTBarPlot *)createBarPlotWithIdentifier:(NSString *)identifier withColor1:(NSColor *)color1 andColor2:(NSColor *)color2{
CPTBarPlot *barChart = [[CPTBarPlot alloc]init];
barChart.paddingBottom = 0;
barChart.paddingLeft = 0;
barChart.paddingRight = 0;
barChart.paddingTop = 0;
barChart.dataSource = self;
barChart.delegate = self;
barChart.identifier = identifier;
barChart.barWidth = CPTDecimalFromFloat(.7);
barChart.barCornerRadius = 6;
barChart.lineStyle = nil;
CPTMutableShadow *shadow = [CPTMutableShadow shadow];
shadow.shadowColor = [CPTColor grayColor];
shadow.shadowBlurRadius = 3;
shadow.shadowOffset = CGSizeMake(1, -1);
[barChart setShadow:shadow];
CPTGradient *gradient = [CPTGradient gradientWithBeginningColor:[CPTColor colorWithCGColor:color1.CGColor] endingColor:[CPTColor colorWithCGColor:color2.CGColor]];
barChart.fill = [CPTFill fillWithGradient:gradient];
return barChart;
}
-(void)setBarPlotToGraph:(CPTGraph *)graph withIdentifier:(NSString *)identifier andComposedColor:(ComposedColor *)composedColor{
[self removeAllPlotsInGraph:graph];
graph.plotAreaFrame.paddingTop = 10.0;
graph.plotAreaFrame.paddingRight = 0.00;
graph.plotAreaFrame.paddingBottom = 30.0;
graph.plotAreaFrame.paddingLeft = 0;
[graph addPlot:[self createBarPlotWithIdentifier:identifier withColor1:composedColor.baseColor andColor2:composedColor.brightColor]];
CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.yRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(0)
length:CPTDecimalFromInt(15)];
plotSpace.xRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(-1)
length:CPTDecimalFromInt(8)];
CPTXYAxisSet *axisSet = (CPTXYAxisSet *)graph.axisSet;
CPTXYAxis *xAxis = axisSet.xAxis;
xAxis.orthogonalCoordinateDecimal = CPTDecimalFromInt(0);
xAxis.majorIntervalLength = CPTDecimalFromInt(1);
xAxis.minorTicksPerInterval = 0;
xAxis.labelingPolicy = CPTAxisLabelingPolicyNone;
xAxis.axisConstraints = [CPTConstraints constraintWithLowerOffset:0];
NSArray *dayOfWeekLabels = [NSDate daysOfTheWeekNamesAbbreviated:YES];
NSMutableArray *customXLabels = [NSMutableArray array];
NSDate *tempDate = self.startDate;
for (int i = 0; i < 7; i++) {
CPTAxisLabel *label = [[CPTAxisLabel alloc]initWithText:[NSString stringWithFormat:@"%@ %i",dayOfWeekLabels[i], tempDate.day] textStyle:self.chartLabelStyle];
tempDate = [tempDate addDays:1];
label.tickLocation = [@(i) decimalValue];
label.offset = xAxis.labelOffset + xAxis.majorTickLength;
// label.rotation = M_PI/4.0;
[customXLabels addObject:label];
}
xAxis.axisLabels = [NSSet setWithArray:customXLabels];
CPTXYAxis *yAxis = axisSet.yAxis;
yAxis.title = @"Value";
yAxis.titleOffset = 50.f;
yAxis.labelingPolicy = CPTAxisLabelingPolicyNone;
yAxis.axisConstraints = [CPTConstraints constraintWithLowerOffset:0];
}
-(void)updateCharts{
[self updateCompletedChart];
[self updateUncompletedChart];
}
-(void)updateUncompletedChart{
self.uncompletedTasksGraphData = [self calculateChartDataWithTasks:self.uncompletedTasks groupType:[self groupTypeForGraph] chartType:[self chartTypeForGraph]];
if (self.pieChartButton.state) {
[self setPieChartPlotToGraph:self.uncompletedGraph withIdentifier:UNCOMPLETED_PIE_CHART_IDENTIFIER];
}
else if(self.barChartButton.state){
[self setBarPlotToGraph:self.uncompletedGraph withIdentifier:UNCOMPLETED_BAR_CHART_IDENTIFIER andComposedColor:[[ComposedColorManager defaultInstance]composedColorWithCode:@"Red"]];
}
[self.uncompletedGraph reloadData];
}
-(void)updateCompletedChart{
self.completedTasksGraphData = [self calculateChartDataWithTasks:self.completedTasks groupType:[self groupTypeForGraph] chartType:[self chartTypeForGraph]];
if (self.pieChartButton.state) {
[self setPieChartPlotToGraph:self.completedGraph withIdentifier:COMPLETED_PIE_CHART_IDENTIFIER];
}
else if(self.barChartButton.state){
[self setBarPlotToGraph:self.completedGraph withIdentifier:COMPLETED_BAR_CHART_IDENTIFIER andComposedColor:[[ComposedColorManager defaultInstance]composedColorWithCode:@"Green"]];
}
[self.completedGraph reloadData];
}
/////////////////////////////////////////////////////////////
#pragma mark Graph Data Source
/////////////////////////////////////////////////////////////
-(NSMutableArray *)chartDataForIdentifier:(NSString *)identifier{
if (identifier == COMPLETED_PIE_CHART_IDENTIFIER || identifier == COMPLETED_BAR_CHART_IDENTIFIER) {
return self.completedTasksGraphData;
}
else if(identifier == UNCOMPLETED_PIE_CHART_IDENTIFIER || identifier == UNCOMPLETED_BAR_CHART_IDENTIFIER){
return self.uncompletedTasksGraphData;
}
else{
throwNotImplementedException;
}
}
-(NSUInteger )numberOfRecordsForPlot:(CPTPlot *)plot{
if (plot.identifier == COMPLETED_PIE_CHART_IDENTIFIER || plot.identifier == UNCOMPLETED_PIE_CHART_IDENTIFIER) {
return [[self chartDataForIdentifier:(NSString *)plot.identifier] count];
}
else{
return 7;
}
}
-(NSNumber *)numberForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)idx{
if (plot.identifier == COMPLETED_PIE_CHART_IDENTIFIER || plot.identifier == UNCOMPLETED_PIE_CHART_IDENTIFIER) {
if (fieldEnum == CPTPieChartFieldSliceWidth) {
NSMutableArray *graphData = [self chartDataForIdentifier:(NSString *)plot.identifier];
return [graphData[idx] numberValue];
}
else{
return @(0);
}
}
else if(plot.identifier == COMPLETED_BAR_CHART_IDENTIFIER || plot.identifier == UNCOMPLETED_BAR_CHART_IDENTIFIER){
if (fieldEnum == CPTScatterPlotFieldX) {
return @(idx);
}
else if(fieldEnum == CPTScatterPlotFieldY){
NSDate *date = [self.startDate addDays:idx];
NSMutableArray *graphData = [self chartDataForIdentifier:(NSString *)plot.identifier];
float sum = [graphData chartDataSumWithDate:date];
return @(sum);
}
else{
return @(0);
}
}
else{
throwNotImplementedException;
}
}
-(CPTLayer *)dataLabelForPlot:(CPTPlot *)plot recordIndex:(NSUInteger)idx{
if (plot.identifier == COMPLETED_PIE_CHART_IDENTIFIER || plot.identifier == UNCOMPLETED_PIE_CHART_IDENTIFIER) {
NSMutableArray *chartDataArray = [self chartDataForIdentifier:(NSString *)plot.identifier];
ChartData *chartData = chartDataArray[idx];
CPTTextLayer *textLayer = [[CPTTextLayer alloc]initWithText:[chartData labelWithPercentage]];
[textLayer setTextStyle:self.chartLabelStyle];
return textLayer;
}
else{
NSMutableArray *chartData = [self chartDataForIdentifier:(NSString *)plot.identifier];
NSDate *date = [[self.startDate addDays:idx] dateAsDateWithoutTime];
float sum = [chartData chartDataSumWithDate:date];
if (sum == 0) {
return nil;
}
CPTTextLayer *textLayer = [[CPTTextLayer alloc]initWithText:[NSString stringWithFormat:@"%.0f", sum]];
return textLayer;
}
}
-(CPTFill *)sliceFillForPieChart:(CPTPieChart *)pieChart recordIndex:(NSUInteger)index{
if (pieChart.identifier == COMPLETED_PIE_CHART_IDENTIFIER || pieChart.identifier == UNCOMPLETED_PIE_CHART_IDENTIFIER) {
NSMutableArray *chartData = [self chartDataForIdentifier:(NSString *)pieChart.identifier];
ChartData *data = chartData[index];
if (data.color && data.color2) {
CPTColor *cptColor1, *cptColor2;
cptColor1 = [CPTColor colorWithCGColor:data.color.CGColor];
cptColor2 = [CPTColor colorWithCGColor:data.color2.CGColor];
CPTGradient *gradient = [CPTGradient gradientWithBeginningColor:cptColor1 endingColor:cptColor2];
return [CPTFill fillWithGradient:gradient];
}
else{
CPTColor *color = [CPTColor colorWithCGColor:data.color.CGColor];
CPTFill *fill = [CPTFill fillWithColor:color];
return fill;
}
}
else{
throwNotImplementedException;
}
}
最佳答案
我相信这个问题已经得到解决。 1.6 版本应该很快就会发布,或者您可以从 GitHub 获取最新代码.
关于macos - CorePlot 1.5.1 中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30105925/
在跨平台应用程序中,我正在使用一个配置文件,允许用户根据需要覆盖各种默认值。 我的问题是...在哪里放置/查找此配置文件,尤其是关于 MacOS X(我从未使用过且无法访问)?我知道 MacOS X
由于Xcode的代码签名和存档非常耗时,枯燥且有问题,因此我一直通过自己的脚本使用命令行工具xcodebuild,codesign等对我的开发人员ID签名的macOS应用进行代码签名,存档和交付。公证
我正在寻找一种在 MacOs 应用程序中以编程方式逐帧绘制动画的方法(不是关键帧属性动画)。我尝试使用drawLayer:inContext:委托(delegate)方法绘制到CALayers,调用s
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我在83%的安装openCV中遇到问题...我的python是2.7.3。我已经适应了xcode。我使用了这个tuturial。 我的Cmake: cmake -D CMAKE_BUILD_TYPE=
我需要弄清楚 Mac 的日志键的键码(ctrl、shift 等)或者需要知道如何跟踪这个日志按键事件... 基本上我正在将 mac key 代码转换为等效的 Windows key 代码......我
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 2年前关闭。 Improve thi
我想将一个 Rust 程序从我的 x86 Mac 交叉编译成一个可以在 Silicon Mac 上运行的二进制文件,但我无法弄清楚链接。 我有: 运行 macOS 10.15.7 Catalina 的
在 macOS ventura 中,我无法复制我的终端应用程序。 我想这样做,因为我有一个 M1 处理器,我想要一个使用 Rosetta2 打开的处理器和一个本地打开的处理器。 有什么办法解决这个问题
当您可以访问实际硬件时,在 Mac 上以安全模式启动是很容易的。您只需在启动时按住 shift 键即可。 在虚拟机中运行 macOS (OSX) 时如何启动到安全模式? 最佳答案 Schmitty 在
这个问题在这里已经有了答案: How to get Conda and Virtualenv to work on mac OS Catalina? (8 个答案) 关闭 3 年前。 我在 macO
我有一个关于 macOS 应用程序图标的问题。我以前看过很多动画图标,但从来没有真正密切关注正在发生的事情/他们是如何做的。我只是想知道是否有任何方法可以创建在停靠栏中动画的动画应用程序图标。 例如:
每当我在 vim 中输入终端命令(例如,!echo hello)时,我会立即被踢出去查看该终端命令的结果,然后提示我使用 按 ENTER 或键入命令继续。这有点刺耳。我想留在 vim 中,并在底部打印
当使用文本编辑应用程序时,选择一种字体(例如“Menlo”)来呈现字形,当所选字体不包含特殊字形(例如“𠹷”,它是一个简单的中文字形,“Menlo"不包含它), 应用程序会选择一种字体来呈现它, 在
已经有几个关于如何在 Mac 上启用虚拟化的问题(例如 How to enable support of CPU virtualization on Macbook Pro?)。经常报告 sysctl
这只是出于好奇。 Exposé 有两个功能,其中一个是重新排列桌面上的窗口,一个是显示所有打开的窗口,这样用户可以看到隐藏在其他窗口下面的窗口,另一个功能是将所有窗口移到两侧,让用户与桌面交互。 我只
我使用的是 MacOS X,我对应用程序包类型的东西还很陌生。我正在编写一个程序来打开一个窗口并注册鼠标输入——而不是一个命令行工具。当我将我的代码(用 C 编写,如果这很重要)编译成一个可执行文件(
我正在制作一个必须支持 macOS 的 Flutter 插件。但是,当我想创建一个插件并在示例应用程序中运行该插件时(即使我还没有编辑过 Flutter 生成的代码),Xcode 会抛出以下错误。 无
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我想在终端(MacOs)中像屏幕一样显示当前目录面包屑: 我该怎么做? 现在它只是一个文本...... 谢谢 最佳答案 首选项 -> 窗口 -> 检查工作目录或文档下的“路径”。 路径将作为窗口标题的
我是一名优秀的程序员,十分优秀!