orePlot-CocoaTouch.xcodeproj project file is deprecated", but I still see it in the frameworks folder. Why?Second, I read in the release notes for core-plot 2.0 that "corePlot-CocoaTouch.xcodeproj project file is deprecated", but I still see it in the frameworks folder. Why?orePlot-CocoaTouch.xcodeproj project is redundant and will be removed from the 2.1 release. It stayed in the 2.0 release to give everyone using it directly in their apps to update to the main project file instead.Finally, for the folks that are not making changes to the framework itself, is there a place where only the standard binaries for the libraries and the header files (and the cocoapods stuff - for those that understand cocoapods) can be found, so that all consumers of core-plot don't need to build the frameworks a la GNU etc.?
I also saw how the example programs use core-plot by including the core-plot project as part of the app project. But is this the only way to use core plot?
#if TARGET_IPHONE_SIMULATOR || TARGET_OS_IPHONE
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#import <CorePlot/CPTDecimalNumberValueTransformer.h>
#endif
--
You received this message because you are subscribed to the Google Groups "coreplot-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to coreplot-discu...@googlegroups.com.
To post to this group, send email to coreplot...@googlegroups.com.
Visit this group at http://groups.google.com/group/coreplot-discuss.
For more options, visit https://groups.google.com/d/optout.
#import "CorePlot-CocoaTouch.h"
//#import <CorePlot/CorePlot.h>
#import "CorePlot-CocoaTouch.h"
#import <CorePlot/CorePlot.h> : compiles fails with 'cocoa.h not found. framework builds
5)
#import "CorePlot-CocoaTouch.h"
#define TARGET_IPHONE_SIMULATOR 1
#define TARGET_OS_IPHONE 1
#import <CorePlot/CorePlot.h> : compiles fails with 'cocoa.h not found. framework builds.
So I can't even force it to NOT go down that branch in CorePlot.h
#import "TargetConditionals.h"