Commit 3bd14846 authored by Steven杜宇's avatar Steven杜宇

// 资讯

parent 1d915dfa
......@@ -1267,6 +1267,7 @@
04D8FFB02D9A3CF200703C75 /* YHPlanShareImageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D8FFAF2D9A3CF200703C75 /* YHPlanShareImageCell.swift */; };
04D8FFB22DA5007A00703C75 /* YHPictureBrowserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D8FFB12DA5007A00703C75 /* YHPictureBrowserViewController.swift */; };
04D8FFB42DA61DA300703C75 /* YHPlanTestViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D8FFB32DA61DA200703C75 /* YHPlanTestViewController.swift */; };
04D8FFB82DB0D50B00703C75 /* YHGalaxyNewsListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D8FFB72DB0D50B00703C75 /* YHGalaxyNewsListViewController.swift */; };
04E4CF3E2D5C6D32004D4013 /* YHCountryMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E4CF3D2D5C6D32004D4013 /* YHCountryMessageView.swift */; };
04E4CF402D5C83AE004D4013 /* YHSelectPhoneCountryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E4CF3F2D5C83AE004D4013 /* YHSelectPhoneCountryViewController.swift */; };
04E507D62D6EE856005F758B /* YHUserLevelAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E507D52D6EE856005F758B /* YHUserLevelAlertView.swift */; };
......@@ -2576,6 +2577,7 @@
04D8FFAF2D9A3CF200703C75 /* YHPlanShareImageCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHPlanShareImageCell.swift; sourceTree = "<group>"; };
04D8FFB12DA5007A00703C75 /* YHPictureBrowserViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHPictureBrowserViewController.swift; sourceTree = "<group>"; };
04D8FFB32DA61DA200703C75 /* YHPlanTestViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHPlanTestViewController.swift; sourceTree = "<group>"; };
04D8FFB72DB0D50B00703C75 /* YHGalaxyNewsListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHGalaxyNewsListViewController.swift; sourceTree = "<group>"; };
04E4CF3D2D5C6D32004D4013 /* YHCountryMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHCountryMessageView.swift; sourceTree = "<group>"; };
04E4CF3F2D5C83AE004D4013 /* YHSelectPhoneCountryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHSelectPhoneCountryViewController.swift; sourceTree = "<group>"; };
04E507D52D6EE856005F758B /* YHUserLevelAlertView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YHUserLevelAlertView.swift; sourceTree = "<group>"; };
......@@ -5764,6 +5766,7 @@
isa = PBXGroup;
children = (
045C0EC12D12CA5E00BD2DC0 /* YHMessageDetailListVC.swift */,
04D8FFB72DB0D50B00703C75 /* YHGalaxyNewsListViewController.swift */,
045C0EC22D12CA5E00BD2DC0 /* YHMessageListVC.swift */,
);
path = C;
......@@ -7733,6 +7736,7 @@
045C11842D12CA5F00BD2DC0 /* YHActivityListModel.swift in Sources */,
045C11852D12CA5F00BD2DC0 /* YHActivityTravelCell.swift in Sources */,
045C11862D12CA5F00BD2DC0 /* YHMySignatureListModel.swift in Sources */,
04D8FFB82DB0D50B00703C75 /* YHGalaxyNewsListViewController.swift in Sources */,
045C11872D12CA5F00BD2DC0 /* YHProgressView.swift in Sources */,
045C11882D12CA5F00BD2DC0 /* YHAIHistoryMessage.swift in Sources */,
045C11892D12CA5F00BD2DC0 /* YHUploadCertificateViewModel.swift in Sources */,
......
//
// YHGalaxyNewsListViewController.swift
// galaxy
//
// Created by Dufet on 2025/4/17.
// Copyright © 2025 https://www.galaxy-immi.com. All rights reserved.
//
import UIKit
class YHGalaxyNewsListViewController: YHBaseViewController {
// lazy var tableView: UITableView = {
// let tableView = UITableView(frame: .zero, style: .grouped)
// tableView.estimatedSectionHeaderHeight = 1.0
// tableView.estimatedSectionFooterHeight = 1.0
// tableView.showsVerticalScrollIndicator = false
// tableView.separatorStyle = .none
// tableView.delegate = self
// tableView.dataSource = self
// tableView.backgroundColor = .white
// tableView.register(UITableViewCell.self, forCellReuseIdentifier: "UITableViewCell")
// tableView.register(YHMessageSessionCell.self, forCellReuseIdentifier: YHMessageSessionCell.cellReuseIdentifier)
// return tableView
// }()
override func viewDidLoad() {
super.viewDidLoad()
gk_navTitle = "银河资讯"
let rightButtonItem = UIBarButtonItem(image: UIImage(named: "msg_clean"), style: .plain, target: self, action: #selector(didCleanBtnClicked))
gk_navRightBarButtonItem = rightButtonItem
gk_navItemRightSpace = 16
}
@objc func didCleanBtnClicked() {
}
}
......@@ -23,8 +23,8 @@ class YHMessageListVC: YHBaseViewController {
private let serviceCenterViewModel = YHServiceCenterViewModel()
var isNotifyEnabled = false
lazy var tableView: UITableView = {
let tableView = UITableView(frame: .zero, style: .grouped)
tableView.estimatedSectionHeaderHeight = 1.0
tableView.estimatedSectionFooterHeight = 1.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment