zoukankan      html  css  js  c++  java
  • 项目中启动另外的一个app

        NSMutableString *webViewContent = [[NSMutableStringalloc] init];

        [webViewContent appendString:@"<html xmlns="http://www.w3.org/1999/xhtml">"];

        [webViewContent appendString:@"<head>"];

        [webViewContent appendString:@"<meta id="viewport" name="viewport" content="width=280; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />"];

        [webViewContent appendString:@" <style type="text/css">"];

        [webViewContent appendString:@" body"];

        [webViewContent appendString:@" {"];

        [webViewContent appendString:@" margin: 0px;"];

        [webViewContent appendString:@" padding: 0px;"];

        [webViewContent appendString:@" }"];

        [webViewContent appendString:@" </style>"];

        [webViewContent appendString:@" <title>title</title>"];

        [webViewContent appendString:@" </head>"];

        [webViewContent appendString:@" <body>"];

        [webViewContent appendString:@" <script>"];

        [webViewContent appendString:@" window.location = "vlife963656852:";"];

        [webViewContent appendString:@" setTimeout( function(){ window.location="https://itunes.apple.com/us/app/v-sheng-huo/id605292920?ls=1&mt=8"; } , 1500);"];

        [webViewContent appendString:@" </script>"];

        [webViewContent appendString:@" </body>"];

        [webViewContent appendString:@" </html>"];

        

        UIWebView *webView = [[UIWebViewalloc] initWithFrame:CGRectMake(0, 0, 1, 1)];

        webView.delegate = self;

        [webView loadHTMLString:webViewContent baseURL:[NSURLURLWithString:@""]];

        [self.view addSubview:webView];

        [webView release];

        

        [webViewContent release];

  • 相关阅读:
    查找实体,只限关系数据源的报表模型
    Reporting Service 报表模型
    Façade外观(结构型模式)
    安装Adventureworks2008的艰难历程(原创)
    使用关系数据库和矩阵,Reporting Service也能实现类似Analysis的分析
    简单工厂模式
    报表模型_创建透视
    有用的几个维度属性
    报表模型_创建计算字段
    Composite 组合(结构型模式)
  • 原文地址:https://www.cnblogs.com/iphone520/p/3352811.html
Copyright © 2011-2022 走看看