App Store Connect / Developer Insights / Tech Talks / WWDC07 / WWDC08 / WWDC09 / WWDC10 / WWDC11 /
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
let label = UILabel() | |
label.text = "Swift is a modern, intuitive programming language crafted for all Apple platforms." | |
label.setValue(true, forKey: "marqueeEnabled") | |
label.setValue(true, forKey: "marqueeRunning") | |
label.setValue(0, forKey: "marqueeRepeatCount") |
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
import UIKit | |
final class TransitionDelegate: NSObject, | |
UIViewControllerTransitioningDelegate { | |
private let interactiveController = UIPercentDrivenInteractiveTransition() | |
private let duration = CATransaction.animationDuration() | |
func presentationController(forPresented presented: UIViewController, |
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
2009 - Mastering iPhone Scroll Views | |
UIScrollView Basics | |
2010 - Designing Apps with Scroll Views | |
Photo browsing | |
Tiling | |
2011 - Advanced Scroll View Techniques | |
Infinite scrolling | |
Stationary header views |
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
// | |
// CategorySegmentedControl.swift | |
// | |
// | |
// Created by Ruslan Lutfullin on 05/12/23. | |
// | |
import SwiftUtilities | |
import Algorithms | |
import UIKit |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<rss version="2.0" | |
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/"> | |
<channel> | |
<title>Озарк</title> | |
<description> | |
Марти Берд и его бизнес-партнер Брюс Лидделл работают финансовыми консультантами в деловом центре Чикаго, но в действительности сотрудничают со вторым по величине мексиканским картелем, отмывая для него деньги. | |
Когда его друг обманывает криминального босса Камино Дель Рио и расплачивается за это жизнью, главный герой под страхом смерти обещает возместить весь ущерб и даже больше. | |
Он дает слово переехать вместе с семьей в туристический регион Озарк и за пять лет отмыть полмиллиарда долларов. |
Вся история зиждется на сервисе под названием Amazon AWS.
Несмотря на то, что платить не придётся, для регистрации потребуется карта с положительным балансом на ней. Списанные пару долларов(списываются они с целью подтверждения карты) вернутся в течении 1-2 рабочих дня.
Переходим по ссылке и жмём кнопку:
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
final class GetPreferredImageOperation: PSGroupOperation { | |
private let taskOperation: PSURLSessionTaskOperation | |
private let downsampleOperation: DownsampleImageOperation | |
private let adapterOperation: BlockOperation | |
private let finishOperation: BlockOperation | |
let identifier: UUID | |
init( |
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
class PSGroupOperation: PSOperation { | |
private let lock = UnfairLock() | |
private let internalQueue: PSOperationQueue | |
private let startingOperation = BlockOperation() | |
private let finishingOperation = BlockOperation() | |
private var aggregatedErrors = [Error]() | |
NewerOlder