Commit 1d477761 authored by Steven杜宇's avatar Steven杜宇

// 测试

parent 78fd4d5c
......@@ -274,6 +274,19 @@ extension YHMyViewController : UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
#if DEBUG
YHHUD.flash(message: "DEBUG", duration: 2.0)
#elseif TESTENV
YHHUD.flash(message: "TESTNEV", duration: 2.0)
#elseif UATENV
YHHUD.flash(message: "UATENV", duration: 2.0)
#else
YHHUD.flash(message: "RELEASE", duration: 2.0)
#endif
if (indexPath.row >= items.count) { return }
if !checkLogin() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment