Total(378)
-
xcode 자동 줄바꿈 설정
무엇을 잘 못 눌렀는지 갑자기 자동 줄 바꿈이 되지 않는 것이다. 어지간히 불편한게 아니였다. 화면도 작은데..ㅠㅠ제대로 나와있는게 없더라.. 그래서 더 열심히 찾아봤다.http://stackoverflow.com/questions/5271530/how-to-disable-word-wrap-in-xcode-4-editor 위 Line wrapping 에 체크를 하였더니 잘 됨. 특정페이지에서만 자동 줄바꿈이 되지 않는다면, 아래 이미지 처럼 Wrap lines 체크해보자.
2016.09.07 -
맥에서 파일 복사/잘라내기
복사 : Command + c붙여넣기 : Command + v잘라내기 : Command + Option + v
2016.09.07 -
status bar 색상 변경
* AppDelegate func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization after application launch. UIApplication.sharedApplication().valueForKey("statusBar")?.setValue(UIColor.redColor(), forKey: "foregroundColor") return true } - swift 3.0// let statWindow = UIApplication.shared.value(forKey:"st..
2016.09.05 -
collectionview overlap 되는 이미지와 버튼 기기별 조정(?)
아래와 같은 이미지를 만들려고 한다. storyboard에 비스무리하게 만들었다. layout을 맞춰주기 위해서 아래와 같이 size을 임의로 조절 하였다. func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize { let screenSize = UIScreen.mainScreen().bounds let screenHeight = screenSize.height var width: CGFloat? = nil var height: CGFloat? = nil // 아래 CG..
2016.09.02 -
app심사 및 itunes connect 사용법 링크
https://developer.apple.com/library/mac/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide_ko/Chapters/About.html#//apple_ref/doc/uid/TP40016320-CH1-SW1
2016.09.01 -
tabbar에서 tableview 사용시 마지막 로우가 tabbar에 가려질 때
http://stackoverflow.com/questions/3463157/tab-bar-covers-uitableviews-last-cell Under Bottom Bars 의 체크를 해제 한다.
2016.08.30