最近项目中用到评论回复,底部弹出自定义view,包含文字输入,图片选择等。
使用方法比较简单,只需初始化自定义view,遵循CustomDelegate协议即可。
UITabBarController *tabBarVC = [[UITabBarController alloc] init];//(这儿取你当前tabBarVC的实例)
CGFloat tabBarHeight = tabBarVC.tabBar.frame.size.height;
CustomView*custom = [[CustomViewalloc]initWithFrame:CGRectMake(0,SCREENH_HEIGHT-tabBarHeight,SCREEN_WIDTH, tabBarHeight)];
custom.Customdelegate=self;
[self.viewaddSubview:custom];
- (void)textContent:(NSString*)textContent imageArr:(NSArray*)imageArr {
NSLog(@"文字内容------%@所选图片---------%@",textContent,imageArr);
}
有需要的小伙伴可以下载demo
网友评论