Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
Z
ZhiJi-Overseas
Project
Project
Details
Activity
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lmj
ZhiJi-Overseas
Commits
c4bc6de5
Commit
c4bc6de5
authored
Aug 03, 2020
by
lmj_521aiau@163.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
3e249097
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
4 deletions
+28
-4
project.pbxproj
ZhiJi.xcodeproj/project.pbxproj
+2
-2
Contents.json
ZhiJi/Assets.xcassets/Mine/xuFei_Btn.imageset/Contents.json
+22
-0
xuFei_Btn@2x.png
.../Assets.xcassets/Mine/xuFei_Btn.imageset/xuFei_Btn@2x.png
+0
-0
xuFei_Btn@3x.png
.../Assets.xcassets/Mine/xuFei_Btn.imageset/xuFei_Btn@3x.png
+0
-0
ZJMineHeaderView.m
ZhiJi/Classes/Mine/View/ZJMineHeaderView.m
+2
-2
Info.plist
ZhiJi/Info.plist
+2
-0
No files found.
ZhiJi.xcodeproj/project.pbxproj
View file @
c4bc6de5
...
@@ -1836,7 +1836,7 @@
...
@@ -1836,7 +1836,7 @@
CODE_SIGN_ENTITLEMENTS
=
ZhiJi/ZhiJi.entitlements
;
CODE_SIGN_ENTITLEMENTS
=
ZhiJi/ZhiJi.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
10
3
;
CURRENT_PROJECT_VERSION
=
10
4
;
DEVELOPMENT_TEAM
=
3VFFTBZ496
;
DEVELOPMENT_TEAM
=
3VFFTBZ496
;
FRAMEWORK_SEARCH_PATHS
=
(
FRAMEWORK_SEARCH_PATHS
=
(
"$(inherited)"
,
"$(inherited)"
,
...
@@ -1934,7 +1934,7 @@
...
@@ -1934,7 +1934,7 @@
CODE_SIGN_ENTITLEMENTS
=
ZhiJi/ZhiJi.entitlements
;
CODE_SIGN_ENTITLEMENTS
=
ZhiJi/ZhiJi.entitlements
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_IDENTITY
=
"Apple Development"
;
CODE_SIGN_STYLE
=
Automatic
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
10
3
;
CURRENT_PROJECT_VERSION
=
10
4
;
DEBUG_INFORMATION_FORMAT
=
dwarf
;
DEBUG_INFORMATION_FORMAT
=
dwarf
;
DEFINES_MODULE
=
YES
;
DEFINES_MODULE
=
YES
;
DEVELOPMENT_TEAM
=
3VFFTBZ496
;
DEVELOPMENT_TEAM
=
3VFFTBZ496
;
...
...
ZhiJi/Assets.xcassets/Mine/xuFei_Btn.imageset/Contents.json
0 → 100644
View file @
c4bc6de5
{
"images"
:
[
{
"idiom"
:
"universal"
,
"scale"
:
"1x"
},
{
"filename"
:
"xuFei_Btn@2x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"2x"
},
{
"filename"
:
"xuFei_Btn@3x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"3x"
}
],
"info"
:
{
"author"
:
"xcode"
,
"version"
:
1
}
}
ZhiJi/Assets.xcassets/Mine/xuFei_Btn.imageset/xuFei_Btn@2x.png
0 → 100644
View file @
c4bc6de5
1.83 KB
ZhiJi/Assets.xcassets/Mine/xuFei_Btn.imageset/xuFei_Btn@3x.png
0 → 100644
View file @
c4bc6de5
3.86 KB
ZhiJi/Classes/Mine/View/ZJMineHeaderView.m
View file @
c4bc6de5
...
@@ -117,8 +117,8 @@
...
@@ -117,8 +117,8 @@
//xufeiButton
//xufeiButton
self
.
xuFeiButton
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
self
.
xuFeiButton
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
[
self
.
xuFeiButton
setBackgroundImage
:[
UIImage
imageNamed
:
@"xuFei_Btn"
]
forState
:
UIControlStateNormal
];
//
[self.xuFeiButton setBackgroundImage:[UIImage imageNamed:@"xuFei_Btn"] forState:UIControlStateNormal];
//
[self.xuFeiButton setTitle:kLocalizedString(@"mine_unlock") forState:0];
[
self
.
xuFeiButton
setTitle
:
kLocalizedString
(
@"mine_unlock"
)
forState
:
0
];
[
self
.
xuFeiButton
setTitleColor
:[
UIColor
colorWithHex
:
0x38180D
]
forState
:
0
];
[
self
.
xuFeiButton
setTitleColor
:[
UIColor
colorWithHex
:
0x38180D
]
forState
:
0
];
[
self
.
xuFeiButton
.
titleLabel
setFont
:[
UIFont
systemFontOfSize
:
KFont
(
14
)]];
[
self
.
xuFeiButton
.
titleLabel
setFont
:[
UIFont
systemFontOfSize
:
KFont
(
14
)]];
[
self
.
xuFeiButton
setBackgroundColor
:[
UIColor
colorWithHex
:
0xEBC6B4
]];
[
self
.
xuFeiButton
setBackgroundColor
:[
UIColor
colorWithHex
:
0xEBC6B4
]];
...
...
ZhiJi/Info.plist
View file @
c4bc6de5
...
@@ -53,6 +53,8 @@
...
@@ -53,6 +53,8 @@
<
string
>
1001890363577996
<
/string
>
<
string
>
1001890363577996
<
/string
>
<
k
e
y
>
FacebookDisplayName
<
/k
e
y
>
<
k
e
y
>
FacebookDisplayName
<
/k
e
y
>
<
string
>
$
(
PRODUCT_NAME
)<
/string
>
<
string
>
$
(
PRODUCT_NAME
)<
/string
>
<
k
e
y
>
ITSAppUsesNonExemptEncryption
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
LSApplicationQueriesSchemes
<
/k
e
y
>
<
k
e
y
>
LSApplicationQueriesSchemes
<
/k
e
y
>
<
a
rr
a
y
>
<
a
rr
a
y
>
<
string
>
comgooglemaps
<
/string
>
<
string
>
comgooglemaps
<
/string
>
...
...
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