Resolve IOC first in extension

This commit is contained in:
Kyle Spearrin 2016-08-04 08:31:42 -04:00
parent ed29ead88e
commit d80735028c
1 changed files with 5 additions and 5 deletions

View File

@ -36,16 +36,16 @@ namespace Bit.iOS.Extension
public override void ViewDidLoad()
{
base.ViewDidLoad();
_googleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
View.BackgroundColor = new UIColor(red: 0.94f, green: 0.94f, blue: 0.96f, alpha: 1.0f);
_context.ExtContext = ExtensionContext;
if(!Resolver.IsSet)
{
SetIoc();
}
base.ViewDidLoad();
View.BackgroundColor = new UIColor(red: 0.94f, green: 0.94f, blue: 0.96f, alpha: 1.0f);
_context.ExtContext = ExtensionContext;
_googleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
if(!_setupHockeyApp)
{
var appIdService = Resolver.Resolve<IAppIdService>();