ios,swift2020. 3. 10. 17:40

full screen이 안된다..

 

storyboard 상에서 fullscreen 해주거나 

 

uiviewController 에서 modalPresentationStyle -> fullscreen 해준다

 

[참조] https://stackoverflow.com/questions/56435510/presenting-modal-in-ios-13-fullscreen

Posted by thdeodls85
ios,swift2020. 3. 5. 14:39

[ios] ZXingObjC ZXCapture dissmiss할 시, exc_bad_access code=1 크래쉬 이슈 해결방법

 

zxing라이브러리 가져다 써서 카메라를 키고있다가.. 

 

back해서 dissmiss시켰는데  exc_bad_access code=1 생긴다..

 

카메라를 계속 메모리에 차지하고 사용하고 있어서 delloc시켜야 하는데..

 

어떻게 시켜야 할까??

 

stop하면 될줄 알았는데..계속 죽는다.. 

 

layer -> removeFromSuperlayer 이것도 시켜줘야 한다.

 

그러면 안전하게 빠져 나올 수 있다.

Posted by thdeodls85
ios,swift2020. 3. 4. 15:24

[ios]swift collectionview get scoll position 알 수 있는 방법

 

collectionview 가 scollview안에 포함되어있고...

 

scoll되는 collection이 보이는 부분의 포지션을 가지고 와서 pageControl에 넣어서 자동으로 변경 시킬 수 있다.

 

func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {

        var visibleRect = CGRect()

 

        visibleRect.origin = self.collectionView.contentOffset

        visibleRect.size = self.collectionView.bounds.size

 

        let visiblePoint = CGPoint(x: visibleRect.midX, y: visibleRect.midY)

        guard let indexPath = self.collectionView.indexPathForItem(at: visiblePoint) else { return }

 

        self.pageControl.currentPage = indexPath.row

    }

Posted by thdeodls85
ios,swift2020. 3. 2. 13:15

[ios] swift uitextview padding 없애는 방법

ios6 이전버젼 호완 하려면..

 

contentInset 을 (-8, -8, -8, -8)

 

Posted by thdeodls85
ios,swift2020. 1. 31. 10:49

[ios] Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage issue 해결방법

 

info.plist

 

Privacy - Camera Usage Description

 

Privacy - Photo Library Additions Usage Description

 

이 두 가지 사항을 기본이 아닌 정확한 표현으로 해주면 된다. 

Posted by thdeodls85
ios,swift2020. 1. 31. 10:48

[ios] PHImageManager Unexpectedly found nil while unwrapping an Optional value issue 해결방법

 

PHImageManager.default().requestImageData

 

-> 이렇게 변경 해야 한다.

 let imageManager = PHImageManager()

imageManager.requestImageData

 

 

 

 

 

 

 

Posted by thdeodls85
ios,swift2020. 1. 31. 10:46

[ios] push test site

 

https://pushtry.com/

Posted by thdeodls85
ios,swift2020. 1. 31. 10:46

[ios] swift Found an unexpected Mach-O header code: 0x72613c21 해결방법

 

archive 할려고 하는데  않된다.. framework를 embedded binaries -> 여기에 sdk파일을 올리면 않된다.

 

그래서 Linked frameworks and libraries 로 빼면 된다..

 

않보이면 other framework 로 올리면 된다.

Posted by thdeodls85