Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
红
红星美凯龙管理在线APP IOS
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张杰
红星美凯龙管理在线APP IOS
Commits
ce77d8f6
Commit
ce77d8f6
authored
Dec 28, 2015
by
admin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复bug
parent
4cd76b1f
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
4 deletions
+9
-4
UserInterfaceState.xcuserstate
...userdata/admin.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
Url.h
redstar/Classes/Macro/Url.h
+2
-2
FunctionViewController.m
redstar/Classes/Module/Function/FunctionViewController.m
+1
-0
PicCategoryViewController.m
...ictureCategory/ViewController/PicCategoryViewController.m
+1
-0
PictureTableCell.m
...dule/Function/Picture/PictureList/Cell/PictureTableCell.m
+1
-1
PictureViewController.h
...icture/PictureList/ViewController/PictureViewController.h
+2
-0
PictureViewController.m
...icture/PictureList/ViewController/PictureViewController.m
+1
-1
HomeViewController.m
...r/Classes/Module/Home/ViewController/HomeViewController.m
+1
-0
No files found.
redstar.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate
View file @
ce77d8f6
No preview for this file type
redstar/Classes/Macro/Url.h
View file @
ce77d8f6
...
@@ -10,10 +10,10 @@
...
@@ -10,10 +10,10 @@
#define Url_h
#define Url_h
// url 测试环境
// url 测试环境
#define kRedStarURL @"http://218.244.151.129:7580/"
//
#define kRedStarURL @"http://218.244.151.129:7580/"
// 正式环境
// 正式环境
//
#define kRedStarURL @"http://219.235.234.225:7580/"
#define kRedStarURL @"http://219.235.234.225:7580/"
// 检查更新
// 检查更新
...
...
redstar/Classes/Module/Function/FunctionViewController.m
View file @
ce77d8f6
...
@@ -89,6 +89,7 @@
...
@@ -89,6 +89,7 @@
PictureViewController
*
pic
=
[[
PictureViewController
alloc
]
init
];
PictureViewController
*
pic
=
[[
PictureViewController
alloc
]
init
];
pic
.
come
=
@"首页"
;
pic
.
come
=
@"首页"
;
pic
.
category
=
@"store"
;
pic
.
category
=
@"store"
;
pic
.
titleStr
=
@"商场风采"
;
nav
=
[[
UINavigationController
alloc
]
initWithRootViewController
:
pic
];
nav
=
[[
UINavigationController
alloc
]
initWithRootViewController
:
pic
];
}
else
{
}
else
{
return
;
return
;
...
...
redstar/Classes/Module/Function/Picture/PictureCategory/ViewController/PicCategoryViewController.m
View file @
ce77d8f6
...
@@ -116,6 +116,7 @@
...
@@ -116,6 +116,7 @@
{
{
PictureViewController
*
sopVC
=
[[
PictureViewController
alloc
]
init
];
PictureViewController
*
sopVC
=
[[
PictureViewController
alloc
]
init
];
sopVC
.
come
=
@"图说"
;
sopVC
.
come
=
@"图说"
;
sopVC
.
titleStr
=
_titleArray
[
indexPath
.
section
];
if
(
indexPath
.
section
==
0
)
{
if
(
indexPath
.
section
==
0
)
{
sopVC
.
category
=
@"store"
;
sopVC
.
category
=
@"store"
;
[
self
.
navigationController
pushViewController
:
sopVC
animated
:
YES
];
[
self
.
navigationController
pushViewController
:
sopVC
animated
:
YES
];
...
...
redstar/Classes/Module/Function/Picture/PictureList/Cell/PictureTableCell.m
View file @
ce77d8f6
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
}
else
{
}
else
{
self
.
dateLabel
.
text
=
[[
NSString
stringWithFormat
:
@"%@"
,
pictureList
.
submitTime
]
substringToIndex
:
10
];
self
.
dateLabel
.
text
=
[[
NSString
stringWithFormat
:
@"%@"
,
pictureList
.
submitTime
]
substringToIndex
:
10
];
}
}
self
.
adressLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
pictureList
.
store
Path
];
self
.
adressLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
pictureList
.
store
_name
];
if
(
pictureList
.
hotspot
)
{
if
(
pictureList
.
hotspot
)
{
self
.
hotLabel
.
hidden
=
NO
;
self
.
hotLabel
.
hidden
=
NO
;
...
...
redstar/Classes/Module/Function/Picture/PictureList/ViewController/PictureViewController.h
View file @
ce77d8f6
...
@@ -11,4 +11,6 @@
...
@@ -11,4 +11,6 @@
@interface
PictureViewController
:
UIViewController
@interface
PictureViewController
:
UIViewController
@property
(
nonatomic
,
strong
)
NSString
*
come
;
@property
(
nonatomic
,
strong
)
NSString
*
come
;
@property
(
nonatomic
,
strong
)
NSString
*
category
;
@property
(
nonatomic
,
strong
)
NSString
*
category
;
@property
(
nonatomic
,
strong
)
NSString
*
titleStr
;
@end
@end
redstar/Classes/Module/Function/Picture/PictureList/ViewController/PictureViewController.m
View file @
ce77d8f6
...
@@ -87,7 +87,7 @@
...
@@ -87,7 +87,7 @@
{
{
UILabel
*
customLab
=
[[
UILabel
alloc
]
initWithFrame
:
CGRectMake
(
0
,
0
,
40
,
30
)];
UILabel
*
customLab
=
[[
UILabel
alloc
]
initWithFrame
:
CGRectMake
(
0
,
0
,
40
,
30
)];
[
customLab
setTextColor
:[
UIColor
whiteColor
]];
[
customLab
setTextColor
:[
UIColor
whiteColor
]];
[
customLab
setText
:
@"商场风采"
];
[
customLab
setText
:
self
.
titleStr
];
customLab
.
font
=
[
UIFont
boldSystemFontOfSize
:
19
];
customLab
.
font
=
[
UIFont
boldSystemFontOfSize
:
19
];
self
.
navigationItem
.
titleView
=
customLab
;
self
.
navigationItem
.
titleView
=
customLab
;
...
...
redstar/Classes/Module/Home/ViewController/HomeViewController.m
View file @
ce77d8f6
...
@@ -596,6 +596,7 @@ typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);
...
@@ -596,6 +596,7 @@ typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);
PictureViewController
*
pic
=
[[
PictureViewController
alloc
]
init
];
PictureViewController
*
pic
=
[[
PictureViewController
alloc
]
init
];
pic
.
come
=
@"首页"
;
pic
.
come
=
@"首页"
;
pic
.
category
=
@"store"
;
pic
.
category
=
@"store"
;
pic
.
titleStr
=
@"商场风采"
;
nav
=
[[
UINavigationController
alloc
]
initWithRootViewController
:
pic
];
nav
=
[[
UINavigationController
alloc
]
initWithRootViewController
:
pic
];
}
}
...
...
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