AVFoundation : AVAudioPlayer : How to Play Sounds on iOS www.hackingwithswift.com/example-code/media/how-to-play-sounds-using-avaudioplayer How to play sounds using AVAudioPlayer - free Swift 5.1 example code and tips Was this page useful? Let us know! 1 2 3 4 5 www.hackingwithswift.com [iOS] App Development 2020.10.14
하위 .git 폴더 모두 제거 zetawiki.com/wiki/%ED%95%98%EC%9C%84_.git_%ED%8F%B4%EB%8D%94_%EB%AA%A8%EB%91%90_%EC%A0%9C%EA%B1%B0 하위 .git 폴더 모두 제거 - 제타위키 다음 문자열 포함... zetawiki.com [WEB] 2020.10.14
Cocoapod 문제 해결 방법 (ld: duplicate symbols for architecture x86_64) pod이 중복 설치되어서 duplicate 문제가 생김 이럴 때는 아래와 같이 특정 파일을 제거하고 pod 다시 설치해야 함 sudo rm Podfile.lock sudo rm -r [프로젝트명].xcworkspace sudo rm -r Pods pod install +팁 프로젝트에 Pod을 다시 설치하기 전에 Xcode를 클린(Cmd + Shift + K) 혹은 빌드(Cmd + B) 해보면 Pod이 정상작동하는 경우가 다반사입니다. 출처: https://shoveller.tistory.com/4 [성공이란 열정을 잃지않고 실패를 거듭할수 있는 능력이다.] 프로젝트에서 Cocoapod 문제 발생시 제거하고 다시 pod을 설치하는 방법 프로젝트 경로의 Podfile.lock, xcworkspace 및 Po.. [iOS] App Development 2020.09.27
Cocoapod 문제 해결 방법 (ld: duplicate symbols for architecture x86_64) pod이 중복 설치되어서 duplicate 문제가 생김 이럴 때는 아래와 같이 특정 파일을 제거하고 pod 다시 설치해야 함 sudo rm Podfile.lock sudo rm -r [프로젝트명].xcworkspace sudo rm -r Pods pod install +팁 프로젝트에 Pod을 다시 설치하기 전에 Xcode를 클린(Cmd + Shift + K) 혹은 빌드(Cmd + B) 해보면 Pod이 정상작동하는 경우가 다반사입니다. 출처: https://shoveller.tistory.com/4 [성공이란 열정을 잃지않고 실패를 거듭할수 있는 능력이다.] 프로젝트에서 Cocoapod 문제 발생시 제거하고 다시 pod을 설치하는 방법 프로젝트 경로의 Podfile.lock, xcworkspace 및 Po.. [iOS] App Development 2020.09.27
[SWIFT] 차이점 @ObservedObject, @State, and @EnvironmentObject https://www.hackingwithswift.com/quick-start/swiftui/whats-the-difference-between-observedobject-state-and-environmentobject What’s the difference between @ObservedObject, @State, and @EnvironmentObject? - a free SwiftUI by Example tutorial Was this page useful? Let us know! 1 2 3 4 5 www.hackingwithswift.com [iOS] App Development 2020.08.17
[iOS] 옵셔널! 헷갈리는 부분 옵셔널(Optional) -> nil 가능 -> 간단한게 말하면, 옵셔널(?)로 선언된 변수는 값이 있을 수도 있고, 없을 수도 있다는 말 - 옵셔널로 선언하면 해당 변수에 바로 접근 불가함. -> 그래서 위 5가지 사용해서 접근해야 함 참고 https://ginjo.tistory.com/21 [Swift] 옵셔널 (Optional) 옵셔널 (Optional) 옵셔널 (Optional) 은 랩핑이 되어있는 값과 존재하지 않는 값인 nil 중 하나를 나타내는 형태입니다. 간단하게 설명하면 이 변수에는 값이 있을수도 있고, 없을수도 있다는 표현입�� ginjo.tistory.com [iOS] App Development 2020.08.08
[iOS] AVAudioPlayer / 오디오&녹음 기능 구현 https://abc1211.tistory.com/411 16 ios 스위프트 오디오&녹음 어플 구현 // // ViewController.swift // Audio // // Created by MacBookPro on 2017. 11. 28.. // Copyright © 2017년 MacBookPro. All rights reserved. // //오디오를 재생하려면 헤더 파일과 델리게이트가 필요하.. abc1211.tistory.com [iOS] App Development 2020.07.16
[iOS] OOP in Swift https://jinshine.github.io/2018/05/22/Swift/5.OOP%20in%20Swift/ [Swift] 객체지향 프로그래밍(OOP, Object-Oriented Programming) in Swift - jinShine 객체지향 프로그래밍(OOP, Object-Oriented Programming) 개념 개요 객체지향 프로그래밍(Object-Oriented Programming), 줄여서 OOP, 프로그램을 어떻게 설계해야 하는지에 대한 일종의 개념이자 방법론. 절차적 �� jinshine.github.io [iOS] App Development 2020.07.16