UILabel은 멀티라인을 지원하고 있으나 스크롤을 하는 방법은 존재하지 않는다.
반면에 UIScrollView는 스크롤을 지원하는데 이 안에 UILabel을 넣어서 스크롤을 처리하면 된다. 이때 중요한 점은 UIScrollView에 contentSize를 제대로 설정해주어야 스크롤 처리가 된다.
가령 Height가 300인 이미지가 있을 때 UIScrollView의 Height가 100이라면 이미지가 잘려서 보일 것이다. 이때
mScrollView.contentSize = CGSizeMake(width, 300);
와 같이 이미지의 높이 사이즈를 지정해 주면 스크롤 처리가 제대로 된다.
Subscribe to:
Post Comments (Atom)
Task in UnrealEngine
https://www.youtube.com/watch?v=1lBadANnJaw
-
Unity released very good FPS example for people and I decided to analysis how they make this. Personally I wanted to show you how I analys...
-
When we use DrawDebugSphere function for debugging, it is working well but when you are trying to use it in anim node's function it will...
-
If you press a key 'L' in the jupyter notebook then you can see the line number in the editor.
No comments:
Post a Comment