Martin Keding
Martin Keding

Reputation: 21

xcode 10 coreplot messaging unqualified id

I am using Xcode10 and Core-Plot 2.3. When compiling I keep getting the following errors on CPTTradingRangePlot file.

1) Messaging unqualified ID 2) Implicit Conversion from nullable pointer 'NSNumber * _Nullable' to non-nullable pointer type 'ObjectType _Nonnull' (aka 'id')

Any ideas. Thanks so much.

Upvotes: 2

Views: 2078

Answers (1)

Hunter
Hunter

Reputation: 31

GCC_TREAT_WARNINGS_AS_ERRORS=0

add the config in the bulid setting as shown here:

enter image description here

Upvotes: 3

Related Questions