ios8支持: override func viewDidLoad() { super.viewDidLoad() self.tableView.estimatedRowHeight = 100 self.tableView.rowHeight = UITableViewAutomaticDimension } func tableView(tableView: UITable...
swift UILabel不显示html标签
带html标签的文本srcText var attrStr = NSAttributedString(data: srcText.dataUsingEncoding(NSUnicodeStringEncoding, allowLossyConversion: true)!, options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType], documentAttributes: nil, error: n...
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure.
解决方法: 方法1.使用https协议请求; 方法2.Info.plist中增加App Transport Security Settings子项Allow Arbitrary Loads设置为YES。 ![这里写图片描述](http://img.blog.csdn.net/20151122101140185)...
swift delegate
protocol ModelDelegate { func willValueChanged(curValue: Int, newValue: Int) func didValueChanged(curValue: Int, oldValue: Int) } class Model { var delegate: ModelDelegate? var count: Int = 0 { willSet { ...
给UITableView增加拷贝
func tableView(tableView: UITableView, performAction action: Selector, forRowAtIndexPath indexPath: NSIndexPath, withSender sender: AnyObject?) { if action == Selector("copy:") { if indexPath.row < Data.sharedManager.goo...
swift分享到微信
1. 申请微信开发平台AppId 地址:open.weixin.qq.com 2. 下载微信终端sdk文件 包括以下文件: ![微信sdk](http://img.blog.csdn.net/20151211233145053) 3. 将sdk文件导入到工程 ![这里写图片描述](http://img.blog.csdn.net/20151211233353651) 4.微...
Static table views are only valid when embedded in
问题 当在UIViewController中加入Table View,然后将其Content设置为Static Cells,xcode编译时报错提示:Static table views are only valid when embedded in UITableViewController instances。 解决方法 1. 将放置Table View改为放置Container View; 2. 单...
swift 网络搜索热词排行
1.使用www.showapi.com上的接口,需要注册添加一个App,这样才能获取appid和secret密钥,调用前需要订购套餐(选免费的就可以了); 2.外部库Podfile文件内容,SnapKit这里暂时不需要用到: platform :ios, '8.0' use_frameworks! target 'WxArticle' do pod 'Alam...
Can only update a mounted or mounting component.
react native Warning: setState(...): Can only update a mounted or mounting component. 碰到这个问题根据给的提示大概意思是:setState方法仅适用于一个安装好的或者正在安装的组件,出现这个提示通常意味着你在组件卸载之后调用了这个方法。 代码如下,这是一个倒...
react native 布局头像标题简介
import React from 'react'; import { registerComponent, } from 'react-native-playground'; import { StatusBar, StyleSheet, Text, View, Image, } from 'react-native'; class ItemBox extends React.Component { render() { r...
android app 笑话
使用react native开发的,通过showapi获取笑话内容,包括文本消息,趣图,动态图。 [github地址](https://github.com/tujiaw/react_native_joke) [apk下载地址](http://pan.baidu.com/s/1nvBDF7b) 代码就不上了直接去[github](https://github.com/tujiaw/react_native_...
android app 微信热门文章精选
试用一下react native做了这个小软件,文章内容是用showapi获取的, 如果你喜欢或者对你有帮助给个star吧([github地址](https://github.com/tujiaw/react_native_wxarticle) [apk下载地址](http://pan.baidu.com/s/1i4XQkWd))。 index.android.js --- 1. render...