Merge pull request #2648 from NathanWalker/fix-ios-image

fix(iOS): image._setColorTint is not a function fix
This commit is contained in:
Vladimir Enchev
2016-08-31 10:16:15 +03:00
committed by GitHub

View File

@ -161,7 +161,7 @@ export class ImageStyler implements style.Styler {
} }
private static resetColorProperty(view: view.View, nativeValue: any) { private static resetColorProperty(view: view.View, nativeValue: any) {
var image = <Image>view.ios; var image = <Image>view;
image._setTintColor(null); image._setTintColor(null);
} }