This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aria2c --header="Host: adcdownload.apple.com" --header="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" --header="Upgrade-Insecure-Requests: 1" --header="Cookie: ADCDownloadAuth=CRUjWTLNv3UygqMcbHhzjzotTAxKLckuKdz%2BHoohZJK6IA0dpZ8jII%2FfpnlNP321jjqVEqNDZSYU%0D%0AQ0aWk%2FI5Nn8NgHL1gXixPeIIl7YfkqDv%2FC6YoES7eXVLWwFokwFY02vILeaH3keCOQDH4sOtmECy%0D%0AWr7Nw330CZAYPfi5HkdbxkQF%0D%0A" --header="User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 10_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B72 Safari/602.1" --header="Accept-Language: en-us" -x 16 -s 16 https://download.developer.apple.com/Developer_Tools/Xcode_10.1/Xcode_10.1.xip -d C:\User\User\Downloads" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)startQrCodeImageViewRotateAnimation { | |
[UIView animateWithDuration:kSCIQRCodeImageViewRotateAnimationDuration | |
delay:kSCIQRCodeImageViewRotateDelay | |
usingSpringWithDamping:kSCIQRCodeImageViewRotateSpringDamping | |
initialSpringVelocity:kSCIQRCodeImageViewRotateSpringVelocity | |
options:UIViewAnimationOptionCurveEaseInOut | |
animations:^{ | |
self.qrCodeImageView.alpha = 1.0; | |
} completion:^(BOOL finished) { | |
[self startQrCodeImageViewRotateAnimation]; |