라벨이 iPhone인 게시물 표시

iPhone Youtube Download

이미지
Install fileMusic for the App Store https://apps.apple.com/us/app/filemusic/id1505046944 Touch the elixir button at the top Click the YouTube-DL Start Button Copy the url of the music you want to download from YouTube. Paste the copied url. Touch Download URL .... Advertisement due to taking time to download .... Check the downloaded sound source.

How to download YouTube music on iPhone

이미지
Install fileMusic from the App Store. download link https://apps.apple.com/us/app/filemusic/id1505046944 Touch the elixir button at the top. Click the YouTube Download button at the bottom. Copy the url of the music you want to download from YouTube. Paste the copied url. Touch Download URL. Advertisement due to taking time to download Check the downloaded sound source.

[xcode] 그레고리력 윤년 구하는 법

2월 29일이 그레고리력의 윤달입니다. 2.29 되는 해를 윤년이라고 합니다. 오브젝티브시로 구현한 내용입니다. BOOL bLeapYear = false; if ((Year % 100 ) != 0 && (Year % 4 ) == 0 ) {     // 100 으로 나누어지지 안고 4 로 나누어지면 윤년     bLeapYear = true ; } else if ((Year % 100 ) == 0 && (Year % 400 ) == 0 )  {      // 100 과 400 으로 나누어지면 윤년     bLeapYear = true ; } if (bLeapYear == true ) {     monthCount = 29 ; } else {     monthCount = 28 ; }