feedback完成
This commit is contained in:
parent
9d3724c188
commit
051051b5d8
Binary file not shown.
23
SwiftProject/SwiftProject/Assets.xcassets/mine/menuvc/menuvc_default.imageset/Contents.json
vendored
Normal file
23
SwiftProject/SwiftProject/Assets.xcassets/mine/menuvc/menuvc_default.imageset/Contents.json
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"filename" : "img_v3_029s_310c0e5f-3baa-463d-9065-59daf68a2dcg 2.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "1x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename" : "img_v3_029s_310c0e5f-3baa-463d-9065-59daf68a2dcg.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "2x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename" : "img_v3_029s_310c0e5f-3baa-463d-9065-59daf68a2dcg 1.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "3x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 772 B |
Binary file not shown.
|
After Width: | Height: | Size: 772 B |
Binary file not shown.
|
After Width: | Height: | Size: 772 B |
@ -259,8 +259,18 @@ class MenuVC: BaseController,UITableViewDelegate,UITableViewDataSource {
|
|||||||
case 1://第二组
|
case 1://第二组
|
||||||
switch indexPath.row {
|
switch indexPath.row {
|
||||||
case 0://Privacy Policy,执行隐私政策
|
case 0://Privacy Policy,执行隐私政策
|
||||||
|
let vc:CCWebController = CCWebController()
|
||||||
|
vc.titleValue = NSLocalizedString("隐私政策", comment: "")
|
||||||
|
let sizeUrl = NSLocalizedString("siteUrl", comment: "隐私政策url")
|
||||||
|
vc.urlString = sizeUrl
|
||||||
|
self.navigationController?.pushViewController(vc, animated: true)
|
||||||
break
|
break
|
||||||
default://Terms of Service, 执行服务条例
|
default://Terms of Service, 用户协议
|
||||||
|
let vc:CCWebController = CCWebController()
|
||||||
|
vc.titleValue = NSLocalizedString("用户协议", comment: "")
|
||||||
|
let sizeUrl = NSLocalizedString("userSiteUrl", comment: "用户协议url")
|
||||||
|
vc.urlString = sizeUrl
|
||||||
|
self.navigationController?.pushViewController(vc, animated: true)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
default://跳转组
|
default://跳转组
|
||||||
|
|||||||
@ -58,7 +58,7 @@ class MenuVCCell: UITableViewCell {
|
|||||||
}else {
|
}else {
|
||||||
//是url
|
//是url
|
||||||
let url = data["image"] as! URL
|
let url = data["image"] as! URL
|
||||||
iconImageView.kf.setImage(with: url, placeholder: UIImage(named: "menuvc_terms"))
|
iconImageView.kf.setImage(with: url, placeholder: UIImage(named: "menuvc_default"))
|
||||||
}
|
}
|
||||||
// //获取图片
|
// //获取图片
|
||||||
// iconImageView.image = data["image"] as? UIImage
|
// iconImageView.image = data["image"] as? UIImage
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user