-3

I am totally new to iPhone, can anyone suggest me color picker with automatic reference counting ? I need to create simple project with choosing color and I tried to add https://github.com/hayashi311/Color-Picker-for-iOS but I got errors for synthesize keyword. Is there any already color picker that is part of framework ?

Damir
  • 54,277
  • 94
  • 246
  • 365

1 Answers1

1

You can disable ARC for select files like the color picker you mentioned using the compiler flag -fno-objc-arc. More here: How can I disable ARC for a single file in a project?

Community
  • 1
  • 1
bobbypage
  • 2,157
  • 2
  • 21
  • 21