Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有一个标签的网页的网址,该标签会不时更改。我想在不打开浏览器的情况下向用户显示标签内的消息。
最好的方法是什么?
从 url 获取 htmldata 的最简单方法是
//ur url is a object of NSURL NSError* error; NSString* html = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8String error:&error];
html中的响应是对url的响应,但是请求会在主线程上,如果连接/响应时间很慢,它会停止其他功能。