EasyLodingView多图播放如何使其没有透明背景框 想要的是不透明的并且全屏的背景,就像美团一样
wwx1991 opened this issue · 3 comments
wwx1991 commented
EasyLodingView多图播放如何使其没有透明背景框 想要的是不透明的并且全屏的背景,就像美团一样
chenliangloveyou commented
把背景颜色设置为clearcolor。如下:
EasyLodingView *lodingV = [EasyLodingView showLodingText:@"3秒后能交互..." config:^EasyLodingConfig *{
static int a = 0 ;
int type = ++a%2 ? LodingShowTypePlayImagesLeft : LodingShowTypePlayImages ;
return [EasyLodingConfig shared].setLodingType(type).setSuperReceiveEvent(NO).setBgColor([UIColor clearColor]);
}];
wwx1991 commented
感谢解答 另外 好像pod search EasyShowView搜不到
chenliangloveyou commented
这个应该是cocoapods的问题,clear下本地就行。或者直接install。