Browse Source

no message

Chris 5 years ago
parent
commit
65da012fde

+ 1 - 1
RainbowPlanet/RainbowPlanet/Modules/CommunityModule/CommunityVideoContent/ViewController/CommunityVideoListController.swift

@@ -100,7 +100,7 @@ class CommunityVideoListController: BaseViewController {
     override func setupData() {
         self.communityVideoListApi()
         
-        collectionView.addFooterWithWithHeader(withAutomaticallyRefresh: true) {
+        collectionView.addFooterWithWithHeader(withAutomaticallyRefresh: false) {
             [weak self] (page) in
             self?.communityVideoListApi(page:page)
         }

+ 1 - 0
RainbowPlanet/RainbowPlanet/Tools/AlertSheetView/AlertSheetView.swift

@@ -116,6 +116,7 @@ class AlertSheetView: NSObject {
     /// 自定义评论View
     class func commentAlertSheetView(postId:Int, videoItemMdl: CommunityVideoItemModel) -> CommunityAllCommentView {
         let commentView = CommunityAllCommentView(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: kSafeTabBarHeight + 500))
+        commentView.configRectCorner(corner: [.topLeft,.topRight], radii: CGSize(width: 8, height: 8))
         commentView.postId = postId
         commentView.videoItemModel = videoItemMdl
         

+ 2 - 1
RainbowPlanet/RainbowPlanet/Tools/KeyBoardCommentView/KeyBoardCommentView.swift

@@ -30,7 +30,8 @@ class KeyBoardCommentView: FWPopupView {
         super.init(frame: frame)
         setupViews()
         setupData()
-
+        
+        configRectCorner(corner: [.topLeft,.topRight], radii: CGSize(width: 8, height: 8))
     }
     
     required init?(coder aDecoder: NSCoder) {