-
![1606047611800](https://user-images.githubusercontent.com/50744096/99903565-2b061180-2d00-11eb-906d-fc4981c43be4.jpg)
```
// Top-level build file where you can add configuration options common …
-
放在cell里面,第一次tableview刷新cell高度为0,然后请求完给数据源赋值了,cell给了一定的高度
if (indexPath.section == 0) {
if(self.model.marquees.count == 0){
return 0;
}
return 45;
}
在setM…
-
![image](https://user-images.githubusercontent.com/16951446/77981875-91878b00-733d-11ea-86e4-3170da2edf52.png)
-
- (void)createItemView:(UIView*)itemView forMarqueeView:(UUMarqueeView*)marqueeView;这个代理,会连续执行3次,里面你 全是 alloc init,是故意这么写的吗 ?
-
- (CGFloat)itemViewWidthAtIndex:(NSUInteger)index forMarqueeView:(UUMarqueeView*)marqueeView {
// 指定条目在显示数据源内容时的视图宽度,仅[UUMarqueeViewDirectionLeftward]时被调用。
// ### 在数据源不变的情况下,宽度可以仅计算一次并缓存复用。
…
-
当数据源大于等于3条时 update代理方法返回的index和数据源对不上号 我想知道当前展示的index应该如何操作
-
public class MarqueeView extends View {
private String string;//最终绘制的文本
private float speed = 1;//移动速度
private int textColor = Color.BLACK;//文字颜色,默认黑色
private float textSize = 12…
-
## 项目推荐
- 项目地址:
https://github.com/xuexiangjys/XUI
- 类别:Java-Android
- 项目后续更新计划:
完善组件使用
- 项目描述:
XUI是一个简洁而又优雅的Android原生UI框架,涵盖绝大部分的UI组件:TextView、Button、EditText、ImageView、Spinner、Picker、Di…
-
_marqueeView = [[UUMarqueeView alloc] initWithDirection:UUMarqueeViewDirectionLeftward];
_marqueeView.delegate = self;
_marqueeView.timeIntervalPerScroll = 1.0f;
_marqueeVi…
-
数据是一个beanlist,我这是了 bean的name作为显示内容,当点击的时候怎么获取position