Sebastian Bierman-Lytle
Sebastian Bierman-Lytle
Had the same question. here is the code: ``` + (NSArray *)countryNames { static NSMutableArray *_countryNames = nil; if (!_countryNames) { _countryNames = [[[self countryNamesByCode].allValues sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] mutableCopy]; [_countryNames insertObject:@"United States"...
Looks like the problem is the EXIF data is stripped off of the original image. @ysugimoto is there any way to keep this data with the resulting images?
Is this for a Box2d shape or an iio shape?
Yes it looks like image attachment isn't working right now in iio 1.4. This will be the next priority but still may take up to a few weeks to get...
FYI the Box2d integration and syntax in 1.2 and 1.4 is very similar, so upgrading won't be too bad if you want to do that once the fix is released.
iio doesn't listen for touch events by default, but they can be added easily with EventListeners in the JS standard library, check out these docs for examples: http://iioengine.iioinc.com/docs/iio-basics#input you can...