sprang / Brushes

Painting app for the iPhone and iPad.
Mozilla Public License 2.0
1.76k stars 449 forks source link

Error When Trying To build #21

Open cranecreative opened 10 years ago

cranecreative commented 10 years ago

I get this error when trying to build for iOS 7.1

for (NSDictionary *dict in self.configuration) { size = [self sizeForPage:ix];

Unused variable "dict"

ghost commented 10 years ago

use like this

for ( __unused NSDictionary *dict in self.configuration) {

cranecreative commented 10 years ago

I got it to build by using active architectures only.

Sent from my iPhone

On Mar 17, 2014, at 3:43 AM, johnSD notifications@github.com wrote:

use like this

for ( __unused NSDictionary *dict in self.configuration) {

— Reply to this email directly or view it on GitHub.