일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- Interceptor
- Reversing
- tar
- upx
- ZIP
- K-shield Jr 10기
- Multimedia
- 써니나타스
- disk
- 리버싱핵심원리
- Mobile
- 안티디버깅
- 디스크
- ctf-d
- 침해사고대응
- swing
- John the ripper
- Android
- 파일해시생성
- Autoware
- 케쉴주
- K-sheild Jr
- CodeEngn
- SW에듀서포터즈
- Frida
- 포렌식
- shadow
- crack
- 모바일프로그래밍
- 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
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 ..