JCStockGraph icon indicating copy to clipboard operation
JCStockGraph copied to clipboard

An easy way to show historical price graphs for any stock in your iOS app

Results 3 JCStockGraph issues
Sort by recently updated
recently updated
newest added

1. Major, I add "Today stock price" feature. 2. Change iOS6, AFNetwork1.3.x support. (But, I am not sure whether that will cause AFNetwork 2.x not work??) 3. Reorder "5 year/1year/..."...

The file JCStockGraphView.m:113~117, and line 121 ``` // 2 - Configure y-axis NSNumberFormatter *priceFormatter = [[NSNumberFormatter alloc] init]; priceFormatter.numberStyle = kCFNumberFormatterCurrencyStyle; priceFormatter.maximumSignificantDigits = 3; priceFormatter.usesSignificantDigits = YES; y.labelFormatter = priceFormatter;...

It can works under iOS6 after I modified the file "JCStockGraph.podspec" s.platform = :ios, '6.0' s.ios.deployment_target = '6.0' Suggest change from 7.0 to 6.0, and more projects can use this...