Guest User

Untitled

a guest
Mar 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. // basic usage
  2. [self.view makeToast:@"This is a piece of toast."];
  3.  
  4. // toast with a specific duration and position
  5. [self.view makeToast:@"This is a piece of toast with a specific duration and position."
  6. duration:3.0
  7. position:CSToastPositionTop];
  8.  
  9. frameModule.topmost().ios.controller.view.makeToast("sometext");
  10.  
  11. frameModule.topmost().ios.controller.view.makeToast(toastObject.text, 5.0, CSToastPositionTop);
  12.  
  13. TNS_TYPESCRIPT_DECLARATIONS_PATH="${pwd}/typings" tns build ios
  14.  
  15. frameModule.topmost().ios.controller.view.makeToastWithDurationPosition(
  16. "This is a piece of toast...", 3, CSToastPositionTop);
Add Comment
Please, Sign In to add comment