Untitled
By: a guest | Mar 12th, 2010 | Syntax:
C# | Size: 0.32 KB | Hits: 43 | Expires: Never
void finishedlaunching()
{
SomeControl sc = new SomeControl ();
window.AddSubview(sc.View);
}
//worked fine in 1.4
/////////////////////////////////////////////////////////////////
private SomeControl sc;
void finishedlaunching()
{
sc = new SomeControl ();
window.AddSubview(sc.View);
}
//maybe do this now???