본문 바로가기

분류 전체보기533

[IT용어] DAU, MAU DAU와 MAU에 관한 이야기모바일 마케터라면 아래 질문들을 한 번쯤은 고민해 본 적이 있을 겁니다. "하루 동안 얼마나 많은 사용자가 우리 앱을 사용할까? 한 달 동안은 어떨까?" "유저 활동 지표는 어떤 식으로 봐야 하kimsyoung.tistory.comMAU (Monthly Active Users)월간 활성 사용자수한달동안 해당 앱을 방문한 사용자의 수중복 카운팅x사용자의 입장에서 해당 앱이 지속적으로 방문할 만큼 얼마나 매력적인지를 알 수 있다. DAU (Daily Active Users)일일 활성 사용자수하루동안 해당 앱을 방문한 사용자의 수 2022. 5. 30.
[iOS Issue] status bar 클릭 시 scrollView가 top으로 이동하는 현상 UIScrollView 클래스 scrollsToTop 속성 UIScrollView 클래스 scrollsToTop속성이 YES 이면 아이폰 상단의 상태바를 터치했을때 UIScro... blog.naver.com Apple Developer Documentation developer.apple.com status bar 클릭 시 scrollView가 top으로 이동하는 현상 iOS 앱에선 status bar를 클릭하면 'scroll-to-top'이라고 불리는 gesture가 실행이 되어서 모든 scrollView들이 top으로 이동하게 된다. (contentOffset.y = 0) 이 현상을 방지하려면 UIScrollViewDelegate의 scrollViewShouldScrollToTop(_:) 메서드를 .. 2022. 5. 25.
[iOS] applicationWillTerminate When will applicationWillTerminate be called? In what situations will applicationWillTerminate be called? For example, will it ocassionally be called if there is a crash in the code? Apple's doc is vague on this, it only says when the system ... stackoverflow.com applicationWillTerminate applicationWillTerminate는 app이 terminate되기 직전에 호출된다. 항상 background 상태에서만 호출이 되며 suspended 상태에선 system이 app을 종.. 2022. 5. 25.
[iOS] User에 의해 종료된 경우 vs System에 의해 종료된 경우 iOS : What is the difference between app killed by system and killed by user? I have to execute some code of my app (down/upload data from my server) periodically (once a day) as I asked there. I read that it is not possible to execute any code from the app when it has been stackoverflow.com User에 의해 종료된 경우 vs System에 의해 종료된 경우 근본적으로 둘 다 Not Running 상태로 변하게 되며 동일한 상태이다. 다만 user가 수동으로 app을 종료시킨 경.. 2022. 5. 25.