Advertisement
Guest User

Untitled

a guest
May 26th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. using System;
  2. using Monobjc;
  3. using System.Runtime.InteropServices;
  4. using Monobjc.Cocoa;
  5.  
  6. namespace HaeString
  7. {
  8. [ObjectiveCClass]
  9. public partial class Teksti : NSObject
  10. {
  11.  
  12. public static readonly Class TekstiClass = Class.GetClassFromType(typeof(Teksti));
  13.  
  14.  
  15. public Teksti ()
  16. {
  17. //ObjectiveCRuntime.LoadLibrary("Teksti");
  18. //ObjectiveCRuntime.Initialize();
  19. }
  20.  
  21.  
  22. public Teksti(IntPtr nativePointer) : base(nativePointer) { }
  23.  
  24.  
  25. protected Teksti(String selector, Object firstParam, params Object[] parameters) : base(selector, firstParam, parameters) {}
  26.  
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement