Posts
All the articles I've posted.
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...
windows任务栏高亮
Published: at 11:35 AMvoid startAlert(HWND hwnd, int durationMs, int timeoutMs) { FLASHWINFO info; info.cbSize = sizeof(info); info.hwnd = hwnd; info.dwFlags = FLASHWTRAY; info.dwTimeout = timeoutMs; info.uCount = durationMs == 0 ? 10 d...
Qt设置窗口标题和exe图标
Published: at 11:21 AMQt窗口标题和exe设置图标,如工程名:joke。 smile.ico是图标名 给窗口标题设置图标比较简单 QApplication a(argc, argv); Dialog w; w.setWindowTitle("Joke"); QIcon icon("/rc/smile.ico"); w.setWindowIcon(icon); w.show(); return a.exec(); ...
方形图片使用QLabel显示成圆形
Published: at 10:30 AM方形图片使用QLabel显示成圆形 ifndef MASKLABELH define MASKLABELH include <QLabel> class MaskLabel public QLabel { public MaskLabel(QWidget parent=0); protected void paintEvent(QPaintEvent ); }; endif // MASKLABEL...
Qt 大数据列表展示
Published: at 10:29 AMQt中使用QListWidget, QTableWidget,QTreeWidget(只考虑最大3层)自定义子widget来展示数据的时候,通常子widget的个数达到了上千加载展示就会很慢,而且很耗内存。原因是new出来的widget太多了。下面的解决方案希望能帮助你。 原理: > 其实一个列表展示给用户看的高度...