SDL  2.0
SDL_sysurl.m File Reference
#include "../SDL_sysurl.h"
#import <UIKit/UIKit.h>
+ Include dependency graph for SDL_sysurl.m:

Go to the source code of this file.

Functions

int SDL_SYS_OpenURL (const char *url)
 

Function Documentation

◆ SDL_SYS_OpenURL()

int SDL_SYS_OpenURL ( const char *  url)

Definition at line 27 of file SDL_sysurl.m.

28 { @autoreleasepool {
29 
30  NSString *nsstr = [NSString stringWithUTF8String:url];
31  NSURL *nsurl = [NSURL URLWithString:nsstr];
32  return [[UIApplication sharedApplication] openURL:nsurl] ? 0 : -1;
33 }}