Swift - 点击事件奇偶次判断

时间:2020-12-23 06:14:37

// 按钮点击事件

func onTouchUpInside() {

struct touchUpInside {

static var count: Int = 0

}

touchUpInside.count += 1

print(touchUpInside.count)

if touchUpInside.count % 2 == 0 {

newsView.frame = CGRectMake(10, 22, UIScreen.mainScreen().bounds.size.width - 50, 40)

} else {

newsView.frame = CGRectMake(10, 22, UIScreen.mainScreen().bounds.size.width - 50, UIScreen.mainScreen().bounds.size.height - 20)

}

}