Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
galaxy-iOS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile-group
galaxy-iOS
Commits
d3337477
Commit
d3337477
authored
Dec 27, 2023
by
David黄金龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理 警告
parent
b1d77671
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
9 deletions
+16
-9
Podfile
galaxy/Podfile
+11
-0
YHMyViewController.swift
galaxy/galaxy/Modules/Mine(我的)/C/YHMyViewController.swift
+5
-9
No files found.
galaxy/Podfile
View file @
d3337477
...
@@ -56,3 +56,14 @@ target 'galaxy' do
...
@@ -56,3 +56,14 @@ target 'galaxy' do
#骨架图
#骨架图
pod
'SkeletonView'
,
'1.30.4'
pod
'SkeletonView'
,
'1.30.4'
end
end
post_install
do
|
installer
|
installer
.
pods_project
.
targets
.
each
do
|
target
|
target
.
build_configurations
.
each
do
|
config
|
if
config
.
build_settings
[
'IPHONEOS_DEPLOYMENT_TARGET'
].
to_f
<
13.0
config
.
build_settings
[
'IPHONEOS_DEPLOYMENT_TARGET'
]
=
'13.0'
end
end
end
end
galaxy/galaxy/Modules/Mine(我的)/C/YHMyViewController.swift
View file @
d3337477
...
@@ -11,11 +11,6 @@ import SnapKit
...
@@ -11,11 +11,6 @@ import SnapKit
struct
PersonalModuleItem
{
struct
PersonalModuleItem
{
var
icon
:
String
var
icon
:
String
var
title
:
String
var
title
:
String
init
(
icon
:
String
,
title
:
String
)
{
self
.
icon
=
icon
self
.
title
=
title
}
}
}
class
YHMyViewController
:
YHBaseViewController
,
ConstraintRelatableTarget
{
class
YHMyViewController
:
YHBaseViewController
,
ConstraintRelatableTarget
{
...
@@ -47,10 +42,11 @@ class YHMyViewController: YHBaseViewController, ConstraintRelatableTarget {
...
@@ -47,10 +42,11 @@ class YHMyViewController: YHBaseViewController, ConstraintRelatableTarget {
override
func
viewDidLoad
()
{
override
func
viewDidLoad
()
{
super
.
viewDidLoad
()
super
.
viewDidLoad
()
// view.addSubview(tableView);
view
.
addSubview
(
tableView
);
// tableView.snp.makeConstraints { make in
tableView
.
snp
.
makeConstraints
{
make
in
// make.left.right.top.bottom.equalTo(view)
make
.
left
.
right
.
top
.
bottom
.
equalTo
(
view
)
// }
}
let
bgImgView
=
UIImageView
(
image
:
UIImage
(
named
:
"launch_screen_image"
))
let
bgImgView
=
UIImageView
(
image
:
UIImage
(
named
:
"launch_screen_image"
))
view
.
addSubview
(
bgImgView
)
view
.
addSubview
(
bgImgView
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment