[ios]swift percent 보여주는 방법
static func getDiscount(target : Int , compare : Int) -> Int
{
if target >= compare
{
return 0
}
let result = (((compare - target) * 100) / compare)
return result
}
'ios,swift' 카테고리의 다른 글
[ios] uiview child view hide 방법 (0) | 2020.01.30 |
---|---|
[ios] swift scrollview scroll가능하게 (0) | 2020.01.30 |
[ios] swift comma만드는 방법 (0) | 2020.01.30 |
[ios] swift already presenting issue 해결방법 (0) | 2020.01.30 |
[ios] swift click이벤트를 막는 방법 (0) | 2020.01.30 |