码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
仿网易新闻界面
#import "AppDelegate.h"#import "ViewController.h"@interfaceAppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)applicati...
分类:其他好文   时间:2015-11-21 18:22:59    阅读次数:265
NSURLSession下载
#import "HMViewController.h"@interface HMViewController () @end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad];}// 任务:任何请求...
分类:Web程序   时间:2015-11-21 11:45:08    阅读次数:156
UICollectionView
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // 1.瀑布流 ...
分类:其他好文   时间:2015-11-21 10:32:31    阅读次数:154
Layout--iOS
// 系统的约束代码@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; UIView *superView = self.view; UIView *viewDemo = [[UIView allo...
分类:移动开发   时间:2015-11-20 21:23:40    阅读次数:162
单例模式之懒汉模式(GCD实现)
HMDataTool.h#import @interface HMDataTool : NSObject+ (instancetype)sharedDataTool;@endHMDataTool.m#import "HMDataTool.h"@implementation HMDataTool// ...
分类:其他好文   时间:2015-11-20 15:25:25    阅读次数:89
UIPageControl页控制器
一、基本知识#import "ViewController.h"@interface ViewController (){ UIScrollView *scrollview; UIPageControl *page;}@end@implementation ViewController- (void...
分类:其他好文   时间:2015-11-19 18:49:17    阅读次数:147
UITableView动态存放、重用机制
一、UITableView动态存放#import "ViewController.h"@interface ViewController (){ UITableView *tableview; NSMutableArray *_arr;//盛放要显示的东西}@end@implementation V...
分类:其他好文   时间:2015-11-19 18:36:16    阅读次数:161
iOS新浪微博OAuth2.0认证代码
#import "ViewController.h"#import "AFNetworking.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDi...
分类:移动开发   时间:2015-11-19 14:58:10    阅读次数:187
UITabView 添加
#import "ViewController.h"@interface ViewController (){ UITableView *_tableView; NSMutableArray *_arrayM;}@end@implementation ViewController- (void).....
分类:其他好文   时间:2015-11-18 12:16:08    阅读次数:126
ios创建二维码
#import "LCTwoCodeImage.h"@implementation LCTwoCodeImage+(UIImage *) GotoCreatMyTwoCode :(NSString *) string { //通过传入的字符串来创建二维码初始图层渲染 CIImage * firs.....
分类:移动开发   时间:2015-11-16 19:07:42    阅读次数:177
1803条   上一页 1 ... 80 81 82 83 84 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!