英文版:https://documentation.devexpress.com/eXpressAppFramework/112818/Concepts/Extend-Functionality/Determine-Why-an-Action-Controller-or-Editor-is-Inac ...
分类:
其他好文 时间:
2018-08-14 23:31:45
阅读次数:
259
效果:viewController里面放置一个按钮和Lab,点击按钮进入oneViewController(delegate回调)或者BlockViewController(block回调),两者控制器里面分别有一个输入框,输入文字后 点击完成,把文本框输入的内容回调到 VIewController ...
分类:
其他好文 时间:
2018-08-07 10:58:45
阅读次数:
97
触摸事件基本都是发生在 viewController 中,首先触摸的对象是视图,而视图的类 UIView 继承了 UIRespnder 类,但是要对事件作出处理,还需要重写 UIResponder 类中定义的事件处理函数。根据不同的触摸状态,程序会调用相应的处理函数。 1、touch 的创建 2、t ...
分类:
其他好文 时间:
2018-08-04 21:42:39
阅读次数:
174
一、设置透明度 在ViewController.m中添加如下方法: 二、平移 1.frame移动 2.transformTranslate平移(常用) 三、缩放 1.frame缩放 2.transformScale缩放(常用) - (void)test{ [UIView animateWithDur ...
分类:
其他好文 时间:
2018-08-04 21:39:13
阅读次数:
211
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let jsonStrl = "{\"name\": \"Lao Wang\"]" let ...
分类:
编程语言 时间:
2018-08-02 19:14:36
阅读次数:
146
在开发中横向滑动我们通常会想到用UICollectionView,确实这个好用,但有时候需求不太明确而且用UICollectionView的头部需要自定义没有UITableView简单,粽子看需求,根据需求决定,但是我们得会这种技能。@interface ViewController ()<UITableViewDelegate,UITable
分类:
移动开发 时间:
2018-07-17 19:14:37
阅读次数:
193
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 -(void)touchesBegan:(NSSet *)touches wit... ...
分类:
移动开发 时间:
2018-07-11 14:43:36
阅读次数:
264
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 -(void)touchesBegan:(NSSet *)touches withE... ...
分类:
Web程序 时间:
2018-07-10 21:39:04
阅读次数:
215
1 #import "ViewController.h" 2 3 @interface ViewController () 4 /** 注释 */ 5 @property (nonatomic, strong) NSMutableData *resultData; 6 @end 7 8 @imple... ...
分类:
Web程序 时间:
2018-07-10 21:28:11
阅读次数:
197
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 /** 6 图片 7 */ 8 @property (weak, nonatomic) IBOutlet UIImageView *imageView; 9 10 @e... ...
分类:
编程语言 时间:
2018-07-04 13:49:23
阅读次数:
208