帧动画的完整实现: 直接上代码演示更加清晰 1 帧动画完整代码实现: 2 #import "ViewController.h" 3 @interface ViewController () 4 5 @property (weak, nonatomic) IBOutlet UIImageView *....
分类:
其他好文 时间:
2016-01-02 01:02:32
阅读次数:
204
import UIKitclass ViewController: UIViewController { @IBOutlet weak var wc: UIWebView! override func viewDidLoad() { super.viewDidLoad() let url = NSU...
分类:
移动开发 时间:
2015-12-29 12:27:27
阅读次数:
154
导入头文件#import "NJKWebViewProgressView.h"#import "NJKWebViewProgress.h"遵守协议 实现代码@implementation ViewController{ IBOutlet __weak UIWebView *_webView;...
分类:
Web程序 时间:
2015-12-25 15:20:35
阅读次数:
155
点击UILabel跳转页面: //定义UILabel @property (weak, nonatomic) IBOutlet UILabel *nameLabel; 用UITapGestureRecognizer手势触碰实现UILabel的点击事件 UITapGestureRecogn...
分类:
移动开发 时间:
2015-12-22 10:24:24
阅读次数:
197
1 UIWindow、UILabel、UIColor、UIScreen、UIViewController、UIView、UIControl、UIButton、IBOutlet、IBAction、UIStepper、 UISlider、 UISwitch、UITextField、UIA...
分类:
其他好文 时间:
2015-12-21 14:23:53
阅读次数:
249
1 #import "MJViewController.h" 2 3 @interface MJViewController () 4 5 @property (weak, nonatomic) IBOutlet UIWebView *webView; 6 @property (weak, ...
分类:
Web程序 时间:
2015-12-20 01:49:38
阅读次数:
210
1 #import "MJViewController.h" 2 3 @interface MJViewController () 4 @property (weak, nonatomic) IBOutlet UITextField *userName; 5 @property (we...
分类:
其他好文 时间:
2015-12-19 23:09:38
阅读次数:
239
今天刚学了UITextField控件, 感觉在里面设置占位符非常好, 给用户提示信息, 于是就在想占位符的字体和颜色能不能改变呢?下面是小编的一些简单的实现.主要有两种方法:方法1:利用富文本@property (weak, nonatomic) IBOutlet UITextField *text...
分类:
其他好文 时间:
2015-12-11 15:08:04
阅读次数:
126
简单的动画#import "SZMLuckyController.h"@interface SZMLuckyController ()@property (weak, nonatomic) IBOutlet UIImageView *luckyLight;@end@implementation SZ...
分类:
其他好文 时间:
2015-12-10 13:09:29
阅读次数:
120
#import "YZViewController.h"@interface YZViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation YZViewContro...
分类:
其他好文 时间:
2015-11-27 14:28:47
阅读次数:
151