zoukankan      html  css  js  c++  java
  • 用TableView做的新闻客户端展示页面

    用TableView做的新闻客户端展示页面

     

     

    1. //  MyTableViewImageCell.m  
    2. //  SildToDo  
    3. //  
    4. //  Created by WildCat on 13-8-18.  
    5. //  Copyright (c) 2013年 wildcat. All rights reserved.  
    6. //  
    7.   
    8. #import "MyTableViewImageCell.h"  
    9.   
    10. @implementation MyTableViewImageCell  
    11. @synthesize myImageView;  
    12. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier  
    13. {  
    14.     self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];  
    15.     if (self) {  
    16.         // Initialization code  
    17.     }  
    18.     return self;  
    19. }  
    20.   
    21. - (void)setSelected:(BOOL)selected animated:(BOOL)animated  
    22. {  
    23.     [super setSelected:selected animated:animated];  
    24.   
    25.     // Configure the view for the selected state  
    26. }  
    27.   
    28. @end  

     



     

     

    StoryBoard:

     

     

     

    具体操作我就不说了挺简单,想知道的可以到新浪微博@我。

     

     

    新浪微博:http://weibo.com/u/3202802157

     

    转载请注明:
    本文转自:http://blog.csdn.net/wildcatlele

  • 相关阅读:
    正则表达式(四)--文本换行分割
    java加密类型和算法名称
    记事本记录日志
    DNS
    jstl--c:choose标签
    csv文本编辑引号问题
    JDBC----ReflectionUtils
    Jsp
    计算机网络 编程 总结:
    N颗骰子的问题
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/3311287.html
Copyright © 2011-2022 走看看