gdavis / FGallery-iPhone

Objective-C based gallery for iPhones
583 stars 144 forks source link

Removed warnings on deprecated methods by using pragma diagnostic. #20

Closed langk closed 12 years ago

langk commented 12 years ago

Hello,

just a little cosmetic on the code - in FGalleryViewController.m the code for 2.0-3.2 issues warnings when turned on in XCode. Simply got rid of this by using the following pragmas:

pragma GCC diagnostic ignored "-Wdeprecated-declarations"

pragma GCC diagnostic warning "-Wdeprecated-declarations"

Would be nice if I could contribute a bit with this to your great library - thanx,

Konrad

gdavis commented 12 years ago

Cool, thanks for the touchup!