上篇文章介绍了Bound/Unbound Function。今天我们来看看Action吧。像我之前说的:Function和Action之前的差别能够简单理解为。Function不改动数据,可是Action却会改动数据。 今天呢,我们也分别看看Bound Action和Unbound Action,事 ...
Back in Feb, was trying to download a file from FTP server by the conventional way using the native X++ code, though we have several approaches and fr ...
分类:
其他好文 时间:
2017-07-28 23:48:41
阅读次数:
359
// // ViewController.swift // NavigationController // import UIKit import Foundation class ViewController: UIViewController,FontSizeChangDelegate { va ...
分类:
编程语言 时间:
2017-07-28 14:07:41
阅读次数:
172
摘要: 本人微信和易信公众号: 微软动态CRM专家罗勇 ,回复262或者20170727可方便获取本文,同时可以在第一间得到我发布的最新的博文信息,follow me!我的网站是 www.luoyong.me 。 我的上一篇文章 利用Fiddler修改请求信息通过Web API执行Dynamics ...
//: Playground - noun: a place where people can play import UIKit //多返回值函数 func countss(string: String) -> (vowels: Int,consonants: Int,others: Int) { ...
分类:
其他好文 时间:
2017-07-26 19:20:13
阅读次数:
139
在线安装 Eclipse help—> Install New Sofware and 再出来的对话框中Location中输入 http://download.jboss.org/jbosstools/updates/development/indigo/名字随便输入name如果只需安装FreeMa... ...
分类:
其他好文 时间:
2017-07-26 00:23:00
阅读次数:
140
ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController { UIImage *_image; NSInteger _index; } @endViewController.m #imp ...
分类:
其他好文 时间:
2017-07-25 16:00:52
阅读次数:
127
layoutSubviews总结ios layout机制相关方法- (CGSize)sizeThatFits:(CGSize)size- (void)sizeToFit——————-- (void)layoutSubviews- (void)layoutIfNeeded- (void)setNeed ...
分类:
其他好文 时间:
2017-07-20 18:45:12
阅读次数:
139
说一下密码加密的实现方式效果图:实现方式:主要说一下密码框的实现,这个密码框中间的四个数字其实是4个UITextField,然后通过键盘删除键 和TextFiled 的协议shouldChangeCharactersInRange.来判断输入的位置,代码如下;直接上代码:// // IDSGameR... ...
分类:
移动开发 时间:
2017-07-19 23:26:02
阅读次数:
435
导语 WKWebView 是苹果在 WWDC 2014 上推出的新一代 webView 组件,用以替代 UIKit 中笨重难用、内存泄漏的 UIWebView。WKWebView 拥有60fps滚动刷新率、和 safari 相同的 JavaScript 引擎等优势。 简单的适配方法本文不再赘述,主要 ...
分类:
移动开发 时间:
2017-07-19 17:41:40
阅读次数:
514