国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

iOS開發(fā)之新浪微博山寨版代碼優(yōu)化

2019-11-14 20:04:06
字體:
供稿:網(wǎng)友

  之前發(fā)表過一篇博客“IOS開發(fā)之新浪圍脖”,在編寫代碼的時候太偏重功能的實現(xiàn)了,寫完基本功能后看著代碼有些別扭,特別是用到的四種cell的類,重復(fù)代碼有點多,所以今天花點時間把代碼重構(gòu)一下。為了減少代碼的重復(fù)編寫把cell中相同的部分抽象成父類,然后繼承。不過也是結(jié)合著storyboard做的。在優(yōu)化時轉(zhuǎn)發(fā)的View和評論的View相似,于是就做了個重用。在原來的代碼上就把cell的代碼進行了重寫,所以本篇作為補充,關(guān)鍵代碼還得看之前的博客。

  1.第一種cell,只有微博內(nèi)容,沒有圖片,效果如下:

  cell對應(yīng)的代碼如下:

  TextTableViewCell.h

 1 #import <UIKit/UIKit.h> 2  3 //TableView要回調(diào)的block,用于把cell中的按鈕的tag傳給TableView 4 typedef  void (^MyCellBlock) (UITableViewCell * cell, int tag); 5  6 @interface TextTableViewCell : UITableViewCell 7 //接收block塊 8 -(void)setMyCellBlock:(MyCellBlock) block; 9 10 //接收字典11 -(void) setDic:(NSDictionary *)dic;12 13 @end

  TextTableViewCell.m(帶圖片的cell繼承于這個cell)

 1 #import "TextTableViewCell.h" 2  3 @interface TextTableViewCell() 4  5 @PRoperty (strong, nonatomic) IBOutlet UIImageView *headImage; 6 @property (strong, nonatomic) IBOutlet UILabel *nameLabel; 7 @property (strong, nonatomic) IBOutlet UILabel *dateLabel; 8 @property (strong, nonatomic) IBOutlet UILabel *weiboTextLabel; 9 10 @property (strong, nonatomic) NSDictionary *dic;11 @property (strong, nonatomic) MyCellBlock block;12 13 @end14 15 @implementation TextTableViewCell16 17 //獲取傳入的block塊18 -(void)setMyCellBlock:(MyCellBlock)block19 {20     self.block = block;21 }22 23 //獲取傳入的參數(shù),用于給我們的cell中的標簽賦值24 -(void) setDic:(NSDictionary *)dic25 {26     27     //設(shè)置頭像28    [self.headImage setImageWithURL:[NSURL URLWithString:dic[@"user"][@"profile_image_url"]]];29     30     //設(shè)置昵稱31     self.nameLabel.text = dic[@"user"][@"name"];32     33     //設(shè)置時間34     NSDateFormatter *iosDateFormater=[[NSDateFormatter alloc]init];35     iosDateFormater.dateFormat=@"EEE MMM d HH:mm:ss Z yyyy";36 37     //必須設(shè)置,否則無法解析38     iosDateFormater.locale=[[NSLocale alloc]initWithLocaleIdentifier:@"en_US"];39    NSDate *date=[iosDateFormater dateFromString:dic[@"created_at"]];40   41      //目的格式42      NSDateFormatter *resultFormatter=[[NSDateFormatter alloc]init];43      [resultFormatter setDateFormat:@"MM月dd日 HH:mm"];44     self.dateLabel.text = [resultFormatter stringFromDate:date];45     46     //設(shè)置微博博文47     self.weiboTextLabel.text = dic[@"text"];48     49 }50 51 52 //通過block回調(diào)來返回按鈕的tag53 - (IBAction)tapCellButton:(id)sender {54     UIButton *button = sender;55     self.block(self, button.tag);56 }57 58 - (void)awakeFromNib59 {60     // Initialization code61 }62 63 - (void)setSelected:(BOOL)selected animated:(BOOL)animated64 {65     [super setSelected:selected animated:animated];66 67     // Configure the view for the selected state68 }69 70 @end

 

  2、上面的代碼有點多,如果我們再加第二個cell(原微博帶圖片的)就簡單多了,可以繼承與上面的cell

  

  ImageTableViewCell.m的代碼如下:(只把要添加的東西加上即可,是不是代碼少多了)

@interface ImageTableViewCell()@property (strong, nonatomic) IBOutlet UIImageView *contentImage;@end@implementation ImageTableViewCell-(void)setDic:(NSDictionary *)dic{    [super setDic:dic];    [self.contentImage setImageWithURL:[NSURL URLWithString:dic[@"thumbnail_pic"]]];}@end

 

  3.第三種cell,是轉(zhuǎn)發(fā)微博不帶圖片的,如下:

   ReTextTableViewCell也是繼承于TextTableViewCell.  ReTextTableViewCell.m的代碼如下:

 1 @interface ReTextTableViewCell () 2 @property (strong, nonatomic) IBOutlet UILabel *weiboTextLabel; 3 @property (strong, nonatomic) IBOutlet NSLayoutConstraint *textHeightConstraint; 4  5 @property (strong, nonatomic) IBOutlet UITextView *reTextView; 6  7 @end 8  9 @implementation ReTextTableViewCell10 11 -(void)setDic:(NSDictionary *)dic12 {13     [super setDic:dic];14     //移除約束15     [self removeConstraint:self.textHeightConstraint];16     17     //給據(jù)text的值求出textLabel的高度18     NSString *text = dic[@"text"];19     NSDictionary * dic1 = @{NSFontAttributeName: [UIFont systemFontOfSize:14]};20     21     CGRect frame = [text boundingRectWithSize:CGSizeMake(260, 1000) options:NSStringDrawingUsesLineFragmentOrigin attributes:dic1 context:nil];22     23     //創(chuàng)建新的約束24     NSString *heightValue = [NSString stringWithFormat:@"V:[_weiboTextLabel(%lf)]",frame.size.height+10];25     NSArray *constraint = [NSLayoutConstraint constraintsWithVisualFormat:heightValue options:0 metrics:nil views:NSDictionaryOfVariableBindings(_weiboTextLabel)];26     27     self.textHeightConstraint = constraint[0];28     [self addConstraint:self.textHeightConstraint];29     30     self.weiboTextLabel.text = text;31     32     self.reTextView.text = dic[@"retweeted_status"][@"text"];33 34 }35 @end

 

  4.第四種cell就是轉(zhuǎn)發(fā)帶圖片的啦,效果如下:

  因為第四種cell只比第三種cell多啦張圖片,所以繼承于第三種cell即可,代碼如下:

#import "ReImageTableViewCell.h"@interface ReImageTableViewCell()@property (strong, nonatomic) IBOutlet UIImageView *contentImageView;@end@implementation ReImageTableViewCell-(void)setDic:(NSDictionary *)dic{    [super setDic:dic];    [self.contentImageView setImageWithURL:[NSURL URLWithString:dic[@"retweeted_status"][@"thumbnail_pic"]]];}@end

 

  來看一下最終的運行效果:

  由上面的界面可以清楚的看到轉(zhuǎn)發(fā)和評論的界面是基本一致的,所以我們在代碼中可以用一個ViewController來控制這個視圖,通過點擊不同的按鈕來拼接不同的url. 選擇的業(yè)務(wù)邏輯如下:

1     if ([self.tag isEqualToValue:@2])2     {3         [self post:comments_create Content:@"comment"];4     }5     if ([self.tag isEqualToValue:@1])6     {7         [self post:repost_test Content:@"status"];8     }

 

  在轉(zhuǎn)發(fā)頁面中用到啦一個TextView, 我們給鍵盤上添加了一個Toolbar來進行鍵盤的回收,代碼如下:

1     //TextView的鍵盤定制回收按鈕2     UIToolbar * toolBar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, 320, 30)];3     4     UIBarButtonItem * item1 = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(tapDone:)];5     UIBarButtonItem * item2 = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];6     UIBarButtonItem * item3 = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];7     toolBar.items = @[item2,item1,item3];8     9     self.commentsTextView.inputaccessoryView =toolBar;

  在要回調(diào)的方法中回收鍵盤:

1 - (IBAction)tapDone:(id)sender {2     [self.commentsTextView resignFirstResponder];3 }

 


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 湛江市| 防城港市| 北流市| 鱼台县| 永新县| 潮州市| 屏南县| 隆昌县| 大宁县| 正蓝旗| 于都县| 开封县| 大庆市| 五原县| 马边| 铜鼓县| 阿图什市| 大洼县| 嘉兴市| 水富县| 宁化县| 柳州市| 且末县| 集贤县| 西峡县| 手游| 两当县| 巴马| 盐源县| 屏东市| 加查县| 广宁县| 闽侯县| 雅安市| 将乐县| 巢湖市| 阜城县| 昆山市| 五大连池市| 公安县| 涡阳县|