Chameleon icon indicating copy to clipboard operation
Chameleon copied to clipboard

Chameleon is a port of Apple's UIKit for iOS (and some minimal related frameworks) to Mac OS X.

Results 48 Chameleon issues
Sort by recently updated
recently updated
newest added

When using this UIKit, buttons in Touch Bar do not have a bezelColor (except standard buttons like ESC). When commenting "_layer = [[[[self class] layerClass] alloc] init];" in UIView, bezelColor...

At Toushay, we recently ported a large iOS codebase to OS X via Chameleon. In the process, we encountered several differences between iOS UIKit and Chameleon. This pull request is...

For me the compiler complained here. Adding extern fixed it.

This patch set fixes a 'drifting' issue in the autoresizing logic. This behaviour is caused by the rounding bias introduced by the use of `floorf` function in `-[UIView _superviewSizeDidChangeFrom:(CGSize)oldSize to:(CGSize)newSize]`....

... build other iOS libs on Mac (such as PSTCollectionView)

Has anyone tested their Chameleon apps on 10.8? I have and UITextFields and UITextViews are not working correctly. If I build the app with the latest 10.7 SDK and run...

The floorf() call causes the view to slowly drift away from where it should be if you resize the superview over and over. Removing the floorf() call solves the problem...