iOS 的评论视图,类似于消息应用。可定制。
@interface CommentsViewController ()
@property(nonatomic,strong)DCCommentView *commentView;
@end
- (void)viewDidLoad
{
[super viewDidLoad];
self.commentView = [[DCCommentView alloc] initWithScrollView:self.tableView frame:self.view.bounds];
self.commentView.delegate = self;
[self.view addSubview:self.commentView];
//self.commentView.charLimit = 255; you can set this if you want a character limit
self.commentView.tintColor = [UIColor redColor]; //sets the proper accent items to red
//self.commentView.accessoryImage = [UIImage imageNamed:@"someimage"]; where the camera button would go
//more setup code
}
安装 DCCommentView 的推荐方法是使用 CocoaPods 软件包管理器,因为它提供了灵活的依赖管理以及极其简单的安装。
通过 CocoaPods
如果还没有安装 CocoaPods,请先安装 CocoaPods
$ [sudo] gem install cocoapods
$ pod setup
切换到 Xcode 项目的目录,创建并编辑 Podfile,然后添加 DCCommentView
$ cd /path/to/MyProject
$ touch Podfile
$ edit Podfile
platform :ios, '7.0'
pod 'DCCommentView'
安装到您的项目中
$ pod install
从 .xcworkspace 文件在 Xcode 中打开您的项目(而不是通常的项目文件)
通过 git 仅将 DCCommentView 添加为 git 子模块
DCCommentView 至少需要 iOS 7。
DCCommentView 在 Apache 许可证下。