bykovme/nswallet

View on GitHub
src/NSWallet/NSWallet.Mac/ViewController.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

using AppKit;
using Foundation;

namespace NSWallet.Mac
{
    public partial class ViewController : NSViewController
    {
        public ViewController(IntPtr handle) : base(handle)
        {
        }

        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            // Do any additional setup after loading the view.
        }

        public override NSObject RepresentedObject
        {
            get
            {
                return base.RepresentedObject;
            }
            set
            {
                base.RepresentedObject = value;
                // Update the view, if already loaded.
            }
        }
    }
}