1、下载安装包并安装服务
yum install phpmyadmin
2、开启远程访问(默认情况下只有127.0.0.1的地址能访问)
2.1打开配置文件 vi /etc/httpd/conf.d
1 2 3 4 | # Apache 2.4 Require ip[......]<p class="read-more"><a href="https://www.yusian.com/blog/centos/2014/09/16/142716659.html">继续阅读</a></p> |
1、下载安装包并安装服务
yum install phpmyadmin
2、开启远程访问(默认情况下只有127.0.0.1的地址能访问)
2.1打开配置文件 vi /etc/httpd/conf.d
1 2 3 4 | # Apache 2.4 Require ip[......]<p class="read-more"><a href="https://www.yusian.com/blog/centos/2014/09/16/142716659.html">继续阅读</a></p> |
警告:Captureing ‘self’ strongly in this block is likely to lead to a retain cycle
这个警告我们在使用block时会经常碰到,什么原因引起的呢?其实是ARC机制造成的
分析:Block对象在创建时会retain一次,如果[……]
一、UIWebView 可以加载和显示某个URL的网页,也可以显示基于HTML的本地网页或部分网页:
a. 加载 URL
1 2 3 4 | WebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 44, 320, 400)]; NSString *path = @"http://www.baidu.com"; NSURL *url = [NSURL URLWithString:path]; [WebView loadRequest:[NSURLRequest requestWithURL:url]]; |
b. 加载 HTML
1 2 3 4 5 | NSBundle *bundle = [NSBundle mainBundle]; NSString *resPath = [bundle resourcePath]; NSString *filePath = [resPath stringByAppendingPathComponent:@"Home.html"]; [webView loadHTMLString:[NSString stringWithContentsOfFile:filePath] baseURL:[NSURL fileURLWithPath:[bundle bundlePath]]]; |
二、使用网页加载指示,加载完成后再显示网页出来
首先要指定委托方法:
webView.delegate =self;
UIWebView主要有下面几个委托方法:
1 2 3 | - (void)webViewDidStartLoad:(UIWebView *)webView;开始加载的时候执行该方法。 - (void)webViewDidFinishLoad:(UIWebView *)webView;加载完成的时候执行该方法。 - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error;加载出错的时候执行该方法。 |
这样,可以利用 webViewDidStartLoad 和 webViewDidFinishLoad 方法实现本功能:[……]
在进行网络请求时出现-1016 是因为只支持text/json,application/json,text/javascript
你可以添加text/html,一劳永逸的方法是在AFURLResponseSerialization.h里面搜索self.acceptableContentTypes然后[……]
2014-09-02 15:02:52.601 Crayfish[7211:60b] Error Domain=com.alamofire.error.serialization.response Code=-1016 “Request failed: unacceptable content-ty[……]