小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

IOS上路

 mobilex6 2015-02-26
//
//  SelfTableView.m
//  0719-StoryBoards
//
//  Created by vigiles on 13-7-18.
//  Copyright (c) 2013年 vigiles. All rights reserved.
//
#import "SelfTableView.h"
/* -------導(dǎo)入數(shù)據(jù)顯示視圖-------- */
#import "SelfViewController.h"
@interface SelfTableView ()
@end
@implementation SelfTableView
/* 表格長度。即有多少行單元格 */
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 10;
}
/* 初始化單元格內(nèi)容 */
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    //標(biāo)示符,要在故事板中和表單控件的單元格關(guān)聯(lián)
    NSString * indentifier = @"Cell";
     
    //聲明可重用單元格
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:indentifier];
    //分配內(nèi)存,初始化
    if (cell == nil) {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:indentifier];
    }
    //文本內(nèi)容
    cell.textLabel.text = [NSString stringWithFormat:@"%d", indexPath.row];
     
    return cell;
}
/* 獲取點擊的單元格 */
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    NSIndexPath * indexPath = [self.tableView indexPathForCell:sender];
     
    /* ----------操作數(shù)據(jù)顯示視圖---------- */
    SelfViewController * svc = segue.destinationViewController;
     
    svc.strData = [NSString stringWithFormat:@"%d", indexPath.row];
}
@end

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多