DCCommentView icon indicating copy to clipboard operation
DCCommentView copied to clipboard

Comment view for iOS, same as messages app. Customizable.

Results 3 DCCommentView issues
Sort by recently updated
recently updated
newest added

self.commentView = [[DCCommentView alloc] initWithScrollView:self.commentTblView frame:self.view.bounds]; self.commentView.delegate = self; //self.commentView.charLimit = 255; you can set this if you want a character limit self.commentView.tintColor = [UIColor redColor]; [self.view addSubview:self.commentView]; Text Area...

DCCommentView is not moving up when it is tapped. Code: commentView = DCCommentView(scrollView: self.tableView, frame: self.view.bounds) self.view.addSubview(commentView) commentView.delegate = self commentView.charLimit = 255 self.commentView.tintColor = GSColor.main

Terminating app due to uncaught exception 'CALayerInvalid', reason: 'layer is a part of cycle in its layer tree' It crashed on this line: self.view.addSubview(commentView) My view controller is UITableViewController subclass