Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
public showCustomView() {
let customView = UIView.alloc().initWithFrame(CGRectMake(0, 0, 215, 80));
customView.backgroundColor = new Color("#FE00FC").ios;
TNSFancyAlert.showCustomView(
customView,
undefined,
undefined,
"Add any view?",
`Just pass in a any UIView.`,
"Nice!"
);
}