package come;public class Library { // Add the missing implementation to this class String realLocation; String[][] bookCollection = new Stri...
分类:
编程语言 时间:
2015-09-14 21:01:37
阅读次数:
223
1.图片缓存#import "UIImageView+WebCache.h"#import "ImageDownloader.h"@implementation UIImageView (WebCache)- (void)setImageWithUrl:(NSString *)urlStr andP...
分类:
Web程序 时间:
2015-09-13 21:38:00
阅读次数:
398
#import "ViewController.h"#import "POP.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; ...
分类:
其他好文 时间:
2015-09-13 21:30:27
阅读次数:
521
#import "MyView.h"@implementation MyView- (void)drawRect:(CGRect)rect { //获取图形上下文(drawrect方法中已经创建好图形上下文) CGContextRef context = UIGraphicsGetCur...
分类:
移动开发 时间:
2015-09-13 21:19:49
阅读次数:
275
#import "NetWorkManage.h"#import "NetWorkInterface.h"#import "AFHTTPRequestOperationManager.h"#import "SDWebImageManager.h"@implementation NetWorkMana...
分类:
其他好文 时间:
2015-09-13 21:19:22
阅读次数:
141
这三个方法是transform最长用的,所以在这里给大家提一下!@interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *btn;@end@implementation ViewController- (IB...
分类:
其他好文 时间:
2015-09-12 17:44:20
阅读次数:
174
//@implementation 类名//方法实现代码//@end//下面实现member类@implementation member-(NSString*) name{return name;}-(int) age{return age;}-(void) setName:(NSString*)...
分类:
其他好文 时间:
2015-09-12 17:27:52
阅读次数:
177
Quartz2D简单使用(二)一、画文字代码: 8 9 #import "YYtextview.h"10 11 @implementation YYtextview12 13 14 - (void)drawRect:(CGRect)rect15 {16 17 // 画文字18 ...
分类:
其他好文 时间:
2015-09-10 13:06:41
阅读次数:
150
Quartz2D简单使用(一)一、画直线代码: 8 9 #import "YYlineview.h"10 11 @implementation YYlineview12 13 14 // 当自定义view第一次显示出来的时候就会调用drawRect方法15 - (void)drawRect:(CG....
分类:
其他好文 时间:
2015-09-10 13:05:33
阅读次数:
213
@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // h获取应用沙盒 NSString *homaPath = NSHomeDirectory(); NSLog(@"%@",homaPath)...
分类:
其他好文 时间:
2015-09-10 00:36:15
阅读次数:
187