hi i am currently trying to load dynamically a view from the NIB file this is the code :
res1 = new View1();
var ptr = NSBundle.MainBundle.LoadNib("View1",res1,null).ValueAt(0);
res1 = Runtime.GetNSObject(ptr) as View1;
res1 has a button inside. the button view is initialized and is inside the res1 view.
but the outlet that i created in the interface builder on the button in NULL how can initialize the outlets?