YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!

2015-12-24-UI12_限时练习

//
// AppDelegate.h
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (retain, nonatomic) UIWindow *window;

@end


//
// AppDelegate.m
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import "AppDelegate.h"

import "ViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

@end



//
// ViewController.h
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end


//
// ViewController.m
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import "ViewController.h"

import "MyTableViewCell.h"

import "SecondViewController.h"

import "Model.h"

@interface ViewController () <UITableViewDataSource, UITableViewDelegate, PassDelegate>
@property (nonatomic, retain) UITableView *tableView;
@property (nonatomic, retain) NSMutableArray *dataArr;
@property (nonatomic, retain) NSIndexPath *index;
@end

@implementation ViewController

pragma mark - 数据处理

pragma mark - tableView协议方法

pragma mark - 传值协议方法

@end



//
// MyTableViewCell.h
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import <UIKit/UIKit.h>

@interface MyTableViewCell : UITableViewCell
@property (nonatomic, retain) UILabel *myLabel;
@end


//
// MyTableViewCell.m
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import "MyTableViewCell.h"

@implementation MyTableViewCell

@end



//
// SecondViewController.h
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import <UIKit/UIKit.h>

@protocol PassDelegate <NSObject>

@end

@interface SecondViewController : UIViewController
@property (nonatomic, copy) NSString *str;
@property (nonatomic, assign) id<PassDelegate> delegate;
@end


//
// SecondViewController.m
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import "SecondViewController.h"

@interface SecondViewController ()
@property (nonatomic, retain) UITextField *textField;
@end

@implementation SecondViewController

/*

pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

*/

@end



//
// Model.h
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import <Foundation/Foundation.h>

@interface Model : NSObject
@property (nonatomic, copy) NSString *string;
@end


//
// Model.m
// UI12_限时练习
//
// Created by Marry W. on 15/12/22.
// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.
//

import "Model.h"

@implementation Model

@end

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »