Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[MotionGraphs] Fix UIView ctor to be called from nib
Browse files Browse the repository at this point in the history
initWithCoder: ctor is the one called when loading a view from a Xib/Nib while
we actually implemented this ctor in GraphView we never actually exported it
so unmanaged land can call our managed version of it.
  • Loading branch information
dalexsoto committed Jun 16, 2015
1 parent 7b81138 commit 3c1b7a4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions MotionGraphs/MotionGraphs/GraphView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public GraphView (CGRect frame) : base (frame)
CommonInit ();
}

[Export ("initWithCoder:")]
public GraphView (NSCoder coder) : base (coder)
{
CommonInit ();
Expand Down

0 comments on commit 3c1b7a4

Please sign in to comment.