06 2015 档案
iOS开发中学到的技巧
摘要:1.终端查询静态库是否支持64位 : 打开终端,cd到静态库的地方。输入命令 lipo -info libUPPayPlugin.a2.数组取最大最小值 : arr = [NSArray arrayWithObjects:@"10",@"50",@"9", nil]; NSIntege... 阅读全文
posted @ 2015-06-25 18:38 timo00 阅读(178) 评论(0) 推荐(0)
CorePlot学习 坐标轴的详细分析
摘要://坐标轴的初始化 -(void)axesInit { // Setup plot space: 设置一屏内可显示的x,y量度范围 CPTXYPlotSpace *plotSpace = (CPTXYPlotSpace *)[xyGra... 阅读全文
posted @ 2015-06-24 14:55 timo00 阅读(397) 评论(0) 推荐(0)
CorePlot学习 点击scatterPlot中的symbol点时弹出相应的注释
摘要:首先要引用委托方法:CPTScatterPlotDelegate、CPTPlotSpaceDelegate完成如下:#pragma mark - #pragma mark CPTPlotSpaceDelegate methods -(BOOL)plotSpace:(CPTPlotSpace *)... 阅读全文
posted @ 2015-06-24 14:52 timo00 阅读(334) 评论(0) 推荐(0)
CorePlot学习 使用技巧
摘要:corePlot 使用技巧://设置内边距:graph.plotAreaFrame.paddingLeft +=5;graph.plotAreaFrame.paddingTop +=5;graph.plotAreaFrame.paddingRight +=5;graph.plotArea... 阅读全文
posted @ 2015-06-24 13:41 timo00 阅读(511) 评论(0) 推荐(0)
[转载]core-Plot学习二 自定义CorePlot label及majorGridLine莫名其妙消失的Bug
摘要:设置corePlot可拖动:plotSpace.allowsUserInteraction = YES; 设置x显示的范围:plotSpace.xRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromInt(8 * oneDay)len... 阅读全文
posted @ 2015-06-24 11:48 timo00 阅读(234) 评论(0) 推荐(0)
Core-Plot学习一 基本对象、添加库
摘要:core plot 阅读全文
posted @ 2015-06-24 11:34 timo00 阅读(246) 评论(0) 推荐(0)
AFNetworking2.5使用
摘要:1.检测网络状态 + (void)netWorkStatus { /** AFNetworkReachabilityStatusUnknown = -1, // 未知 AFNetworkReachability... 阅读全文
posted @ 2015-06-19 18:08 timo00 阅读(168) 评论(0) 推荐(0)
截取图片
摘要:#pragma mark - 截取图片- (void)cutMapView:(UIView *)theView{ //************** 得到图片 ******************* CGRect rect = theView.frame; //截取图片大小 ... 阅读全文
posted @ 2015-06-10 16:15 timo00 阅读(272) 评论(0) 推荐(0)
Blogs地址
摘要:国际化:http://www.cnblogs.com/jerehedu/p/4513573.html 阅读全文
posted @ 2015-06-04 16:37 timo00 阅读(128) 评论(0) 推荐(0)