摘要:
1:delegate或者block传值import UIKitclass ViewController: UIViewController,TestDelegatePassValueDelegate { @IBOutlet weak var TFContent: UITextField! ... 阅读全文
摘要:
class EBTAppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunching... 阅读全文
摘要:
POPAnimatableProperty *prop = [POPAnimatableProperty propertyWithName:@"countdown" initializer:^(POPMutableAnimatableProperty *prop) { ... 阅读全文
摘要:
//// ViewController.m// NSLayoutAnimationDemo//// Created by ebaotong on 15/7/22.// Copyright (c) 2015年 com.csst. All rights reserved.//#import "V... 阅读全文
摘要:
#import @interface TestCell : UITableViewCell@property (weak, nonatomic) IBOutlet UIButton *btnTest;@end#import "ViewController.h"#import "TestCell.h"... 阅读全文
摘要:
#import @interface TJShakeProgressView : UIView@property(nonatomic,assign)CGFloat progress;@end//// TJShakeProgressView.m// TJShakeProgressView//// Cr... 阅读全文
摘要:
#import @interface TJGradientProgressView : UIView/** * 进度值 */@property(nonatomic,assign) CGFloat progressValue;/** * 开始动画 */- (void)startAnimating;... 阅读全文
摘要:
#import @interface TJProgressView : UIView@property(nonatomic,assign)CGFloat progressValue;- (void)showInView:(UIView *)baseView;@end//// TJProgressV... 阅读全文
摘要:
1:添加LocalAuthentication.framework框架2:实现过程#import "ViewController.h"#import @interface ViewController ()@end@implementation ViewController- (void)viewD... 阅读全文
摘要:
@interface ViewController (){ UIView *firstView; UIView *secondView; UIView *thirdView; }@end@implementation ViewController- (void)v... 阅读全文