Tag: Mobile
All the articles with the tag "Mobile".
swift UITableView cell自适应高度
Published: at 11:56 AMios8支持: override func viewDidLoad() { super.viewDidLoad() self.tableView.estimatedRowHeight = 100 self.tableView.rowHeight = UITableViewAutomaticDimension } func tableView(tableView UITable...
swift UILabel不显示html标签
Published: at 11:55 AM带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.
Published: at 11:54 AM解决方法: 方法1.使用https协议请求; 方法2.Info.plist中增加App Transport Security Settings子项Allow Arbitrary Loads设置为YES。 这里写图片描述(http//img.blog.csdn.net/20151122101140185)...
swift delegate
Published: at 11:53 AMprotocol ModelDelegate { func willValueChanged(curValue Int, newValue Int) func didValueChanged(curValue Int, oldValue Int) } class Model { var delegate ModelDelegate? var count Int = 0 { willSet { ...
给UITableView增加拷贝
Published: at 11:52 AMfunc tableView(tableView UITableView, performAction action Selector, forRowAtIndexPath indexPath NSIndexPath, withSender sender AnyObject?) { if action == Selector("copy") { if indexPath.row < Data.sharedManager.goo...
swift分享到微信
Published: at 11:52 AM1. 申请微信开发平台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
Published: at 11:51 AM问题 当在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 网络搜索热词排行
Published: at 11:51 AM1.使用www.showapi.com上的接口,需要注册添加一个App,这样才能获取appid和secret密钥,调用前需要订购套餐(选免费的就可以了); 2.外部库Podfile文件内容,SnapKit这里暂时不需要用到: platform ios, '8.0' useframeworks target 'WxArticle' do pod 'Alam...
Can only update a mounted or mounting component.
Published: at 02:11 PMreact native Warning setState(...) Can only update a mounted or mounting component. 碰到这个问题根据给的提示大概意思是:setState方法仅适用于一个安装好的或者正在安装的组件,出现这个提示通常意味着你在组件卸载之后调用了这个方法。 代码如下,这是一个倒...
react native 布局头像标题简介
Published: at 10:03 AMimport 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...