Skip to content

Instantly share code, notes, and snippets.

@fdundjer
Created June 26, 2018 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdundjer/71d554897f48c7287a856eaee179611c to your computer and use it in GitHub Desktop.
Save fdundjer/71d554897f48c7287a856eaee179611c to your computer and use it in GitHub Desktop.
using Execom.TargetBinding.Core;
using Execom.TargetBinding.iOS.Bindings;
using Execom.TargetBinding.iOS.Controls;
using MvvmCross.Binding.Bindings.Target.Construction;
using MvvmCross.Platforms.Ios.Core;
namespace Execom.TargetBinding.iOS
{
public class Setup : MvxIosSetup<App>
{
protected override void FillTargetFactories(IMvxTargetBindingFactoryRegistry registry)
{
registry.RegisterPropertyInfoBindingFactory(typeof(TintColorMvxTargetBinding), typeof(CustomUIImageView), nameof(CustomUIImageView.TintColor));
base.FillTargetFactories(registry);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment