Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 12th, 2010 | Syntax: C# | Size: 0.32 KB | Hits: 43 | Expires: Never
Copy text to clipboard
  1. void finishedlaunching()
  2. {
  3. SomeControl sc = new SomeControl ();
  4. window.AddSubview(sc.View);
  5. }
  6. //worked fine in 1.4
  7.  
  8. /////////////////////////////////////////////////////////////////
  9.  
  10. private SomeControl sc;
  11.  
  12. void finishedlaunching()
  13. {
  14. sc = new SomeControl ();
  15. window.AddSubview(sc.View);
  16. }
  17. //maybe do this now???