码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 开发中类似上下滚动弹幕实现原理

时间:2018-01-22 17:33:44      阅读:644      评论:0      收藏:0      [点我收藏+]

标签:view   poi   nbsp   滚动   make   nim   result   content   set   

#mark ---滚动弹幕 列表中留有7条记录  大于7条时删除并指引表视图向上滑动

- (void)addRowActionWithContent:(NSString *)str {

    if (self.dataMutArray.count > 7) {

        [self.dataMutArray removeLastObject];

        [self.resultTableView deleteSections:[NSIndexSet indexSetWithIndex:self.dataMutArray.count - 1] withRowAnimation:(UITableViewRowAnimationNone)];

    }

    [self.dataMutArray insertObject:str atIndex:0];

    [self.resultTableView insertSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationTop];

    [self.resultTableView setContentOffset:CGPointMake(0,0) animated:YES];

}

 

iOS 开发中类似上下滚动弹幕实现原理

标签:view   poi   nbsp   滚动   make   nim   result   content   set   

原文地址:https://www.cnblogs.com/tryFighting/p/8329625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!