일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Autoware
- 케쉴주
- disk
- CodeEngn
- tar
- Reversing
- 포렌식
- Mobile
- 디스크
- 리버싱핵심원리
- ctf-d
- Multimedia
- John the ripper
- Frida
- 안티디버깅
- ZIP
- K-shield Jr 10기
- 모바일프로그래밍
- Interceptor
- crack
- 파일해시생성
- Android
- swing
- shadow
- 써니나타스
- SW에듀서포터즈
- K-sheild Jr
- 침해사고대응
- upx
- Today
- Total
목록OS/IOS (3)
물먹는산세베리아
문제 발생 cocoapods으로 FMDB를 설치하는 과정 open Podfile -> pod 'FMDB' 넣고 -> 나와서 pod install pod 'FMDB'를 넣은 후 터미널에서 pod install을 하려고 했으나 'no such file or directory'가 뜸 구글링 해보니 Mac OS 업데이트했던 것이 문제였음 해결방법 cocoapod 재설치하기 sudo gem install cocoapods 하고 다시 pod install
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/xW7x3/btrpD1aK03J/O4mJz5Tx2VpxJDkCwft2w0/img.png)
ViewController.swift // // ViewController.swift // BMICalc // // Created by swuad_26 on 2022/01/03. // import UIKit class ViewController: UIViewController { @IBOutlet weak var label1: UITextField! @IBOutlet weak var label2: UITextField! @IBOutlet weak var label3: UITextField! let numberFormatter:NumberFormatter = { let nf = NumberFormatter() nf.numberStyle = .decimal nf.minimumFractionDigits = 0..
Homebrew를 통해 cocoapod설치 할 때 생긴 문제이다. /usr/local/bin/pod: /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/ruby: bad interpreter: No such file or directory 해결책 sudo gem install cocoapods https://stackoverflow.com/questions/31442214/running-pod-setup-gives-me-bad-interpreter-no-such-file-or-directory-error Running pod setup gives me "bad interpreter: No such file or directory" error ..