Skip to content

Instantly share code, notes, and snippets.

@fdundjer
Created January 25, 2021 10:34
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/d8d0ab78195f8e9379f76f40292bc55d to your computer and use it in GitHub Desktop.
Save fdundjer/d8d0ab78195f8e9379f76f40292bc55d to your computer and use it in GitHub Desktop.
using HTEC.TargetBinding.Core;
using HTEC.TargetBinding.iOS.Bindings;
using HTEC.TargetBinding.iOS.Controls;
using MvvmCross.Binding.Bindings.Target.Construction;
using MvvmCross.Platforms.Ios.Core;
namespace HTEC.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