diff --git a/GoMoney/Resources/Assets.xcassets/ic_question.imageset/Contents.json b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/Contents.json new file mode 100644 index 0000000..21eeecf --- /dev/null +++ b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "icons8-question-mark-30.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "icons8-question-mark-60.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "icons8-question-mark-90.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-30.png b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-30.png new file mode 100644 index 0000000..5423863 Binary files /dev/null and b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-30.png differ diff --git a/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-60.png b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-60.png new file mode 100644 index 0000000..62b09ac Binary files /dev/null and b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-60.png differ diff --git a/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-90.png b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-90.png new file mode 100644 index 0000000..b76ec20 Binary files /dev/null and b/GoMoney/Resources/Assets.xcassets/ic_question.imageset/icons8-question-mark-90.png differ diff --git a/GoMoney/Scences/Tags/NewTagViewController.swift b/GoMoney/Scences/Tags/NewTagViewController.swift index 5c7dda6..abac0d8 100644 --- a/GoMoney/Scences/Tags/NewTagViewController.swift +++ b/GoMoney/Scences/Tags/NewTagViewController.swift @@ -14,7 +14,7 @@ class NewTagViewController: GMMainViewController { private lazy var tagImage: GMExpenseIcon = { let icon = GMExpenseIcon() - icon.loadIcon(src: "logo") + icon.loadIcon(src: "ic_question") icon.layer.borderWidth = 1 icon.layer.borderColor = K.Color.actionBackground.cgColor let tapGesture = UITapGestureRecognizer(target: self, action: #selector(openIconCollection))