bennyguitar / Colours

A beautiful set of predefined colors and a set of color methods to make your iOS/OSX development life easier.
MIT License
3.09k stars 300 forks source link

change access control to public from internal #46

Closed sagaraya closed 8 years ago

sagaraya commented 8 years ago

I tried to use the Colours/Swift installed by cocoapods.

But I cannot use any methods. Because access control is internal.

If you extend a public or internal type, any new type members you add will have a default access level of internal.

The Swift Programming Language (Swift 2.1): Access Control

So, I added public

My Environment is

sagaraya commented 8 years ago

Thanks!