【仅供内部供应商使用,不提供对外解答和培训】

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecpp
title启动FRApp
//注意,如果url里有中文或者//这种特殊字符,需要在生成URL之前,做一次encode([string stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding])
NSURL *url = [NSURL URLWithString:@"FineReport://"];
//NSURL *url = [NSURL URLWithString:@"com.fr.FineReport://"]; //也可以这样写
//NSURL *url = [NSURL URLWithString:@"com.fr.FineReport://?serverUrl=xxxxxx&fr_username=a&fr_password=123"]; //支持传递用户名密码给指定的服务器(路径)
//NSURL *url = [NSURL URLWithString:@"com.fr.FineReport://?serverName=xxxxxx&fr_username=a&fr_password=123"]; //支持传递用户名密码给指定的服务器(名称)
//
//以上参数也可以通过JSON传递,如下
//NSURL *url = [NSURL URLWithString:@"com.fr.FineReport://{\"serverName\":\"xxxxx\", \"fr_username\":\"a\", \"fr_password\":\"123\"}"]
[[UIApplication sharedApplication] openURL:url];
 

...