0

別のクラスから imageview (Xcode からのアウトレット) を更新しようとしていますが、うまくいきませんでした。

AppDelegate :

public UIImageView imageviewLoanInputTabs 
{
    get;
    private set;
}

public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
    imageviewLoanInputTabs = new UIImageView ();
    return true;
}

他のクラス:

var imageObjOutraClass = (AppDelegate) UIApplication.SharedApplication.Delegate;
imageObjOutraClass.imageviewLoanInputTabs.Image = (UIImage.FromBundle ("image11.png"));
4

1 に答える 1