Swift With Sadeq | سوییفت با صادق
@swiftdevelop
134
subscribers
19
photos
1
video
170
links
Email: swiftwithsadeq@gmail.com
Twitter:
https://twitter.com/swiftwithsadeq
Telegram:
@sadeghbitarafan
Download Telegram
Join
Swift With Sadeq | سوییفت با صادق
134 subscribers
Swift With Sadeq | سوییفت با صادق
https://ericasadun.com/2018/12/12/the-beauty-of-swift-5-string-interpolation/
@swiftdevelop
Erica Sadun
The Beauty of Swift 5 String Interpolation
Thanks to SE-0228, you can control exactly how you want string interpolations to print. Thank you Brent for giving this to us. It’s a doozy! Let me share some examples. Consider printing opti…
Swift With Sadeq | سوییفت با صادق
https://agostini.tech/2018/12/09/memory-graph-debugging-in-xcode/
@swiftdevelop
agostini.tech
Memory Graph Debugging in Xcode | agostini.tech
In this article we'll get you started with memory graph debugging and show you some of the cool features of this great tool.
Swift With Sadeq | سوییفت با صادق
https://www.toptal.com/ios/rxswift-animations-ios
@swiftdevelop
Toptal
RxSwift and Animations in iOS
I’ll explore how to apply the power of RxSwift, a reactive framework, to make animation code look much cleaner, and easier to read. My client wanted a story told through a sequence of animations rather than by playing a pre-rendered video, and with RxSwift…
Swift With Sadeq | سوییفت با صادق
https://www.avanderlee.com/xcode/xcode-behaviours-optimized/
@swiftdevelop
SwiftLee
Speeding up with Xcode Behaviors
Optimize your workflow in Xcode with optimized behaviors to quickly navigate to relevant navigators and keep yourself in your development flow.
Swift With Sadeq | سوییفت با صادق
https://pspdfkit.com/blog/2018/creating-an-efficient-app-store-screenshot-workflow/
@swiftdevelop
PSPDFKit
Creating an Efficient App Store Screenshot Workflow | PSPDFKit
A look at how we generate our screenshots for the iOS App Store.
Swift With Sadeq | سوییفت با صادق
https://medium.com/@fadiderias/xcode-and-lldb-advanced-debugging-tutorial-part-1-31919aa149e0
Medium
Xcode and LLDB Advanced Debugging Tutorial: Part 1
One of the very intriguing sessions carried out by some of Apple’s finest debugging engineers during 2018’s WWDC was Advanced Debugging…
Swift With Sadeq | سوییفت با صادق
https://medium.com/@fadiderias/xcode-and-lldb-advanced-debugging-tutorial-part-2-8bfeae4cdfdb
Medium
Xcode and LLDB Advanced Debugging Tutorial: Part 2
In the first part of this three parts tutorial, we’ve covered how to utilize Xcode breakpoints to manipulate an existing property value…
Swift With Sadeq | سوییفت با صادق
https://www.objc.io/blog/2018/11/13/subclassing-alternatives/
www.objc.io
Swift Tip: Custom Views Without Subclassing
Using plain functions to compose views
Swift With Sadeq | سوییفت با صادق
https://www.swiftbysundell.com/posts/the-power-of-type-aliases-in-swift
Swift by Sundell
The power of type aliases in Swift | Swift by Sundell
When using syntactic sugar, what we ideally want is to be able to strike a nice balance between low verbosity and clarity, and this week, let’s take a look at a few different ways that type aliases can enable us to do just that.
Swift With Sadeq | سوییفت با صادق
https://medium.com/@jonathan2457/generate-host-your-ios-documentation-39e21b382ce8
Medium
Generate & Host your iOS Documentation
Give your docs an upgrade
Swift With Sadeq | سوییفت با صادق
https://heartbeat.fritz.ai/detecting-pneumonia-in-an-ios-app-with-create-ml-5cff2a60a3d
Fritz ai
Detecting Pneumonia in an iOS App with Create ML - Fritz ai
In this tutorial, I’ll try to develop an image classifier iOS app to see how I can use Apple’s ML tools to detect pediatric pneumonia.
Swift With Sadeq | سوییفت با صادق
https://useyourloaf.com/blog/faster-app-setup-for-unit-tests/
Use Your Loaf
Faster App Setup For Unit Tests
When Xcode runs your unit tests, it uses the App as a host for the tests. The tests only run after the App has finished launching. Loading core data, networking or other setup work you do from the App delegate slows down your unit tests. Here’s a quick tip…
Swift With Sadeq | سوییفت با صادق
https://www.swiftbysundell.com/posts/testing-error-code-paths-in-swift
Swift by Sundell
Testing error code paths in Swift | Swift by Sundell
When writing automated tests, many of us have a tendency to focus on verifying that our code behaves correctly under ideal conditions, but we should really also test how our code behaves when something goes wrong. This week, let’s take a look at how unit…
Swift With Sadeq | سوییفت با صادق
https://medium.com/flawless-app-stories/how-i-created-apples-voice-memos-clone-b6cd6d65f580
Medium
How I created Apple’s Voice Memos clone
Learn how to create a voice recording app, that has audio visualization as well as a record button just like Apple’s Voice Memos app.
Swift With Sadeq | سوییفت با صادق
#لبخند
@swiftdeveloop
Swift With Sadeq | سوییفت با صادق
https://www.hackingwithswift.com/articles/172/using-two-cased-enums-in-place-of-a-boolean
Hacking with Swift
Using two-cased enums in place of a Boolean
A little extra clarity goes a long way
Swift With Sadeq | سوییفت با صادق
https://stablekernel.com/swift-design-patterns-in-practice-the-decorator-pattern/
Swift With Sadeq | سوییفت با صادق
https://www.swiftbysundell.com/posts/task-based-concurrency-in-swift
Swift by Sundell
Task-based concurrency in Swift | Swift by Sundell
Concurrent code can come in many different shapes and forms. Depending on what we’re trying to achieve, the abstraction that’ll prove to be the best fit might vary quite a lot from use case to use case. One such abstraction is Tasks, and this week, let’s…
Swift With Sadeq | سوییفت با صادق
نوتیفیکیشنی از یک دولوپر خلاق
نوتیفیکیشن ها تاثیر زیادی در جذب کاربر دارند
@swiftdevelop
Swift With Sadeq | سوییفت با صادق
https://ilya.puchka.me/swift5-string-interpolation/
ilya.puchka.me
Swift 5 string interpolation
Strings are everywhere. We all use strings everyday. In Swift `String` is a very powerful type. One of the features it had available since the beginning is the string interpolation. With it we can embed any Swift expression inside the string literal instead…
Swift With Sadeq | سوییفت با صادق
https://useyourloaf.com/blog/character-properties-in-swift-5/
Use Your Loaf
Character Properties in Swift 5
The release of Swift 5 is coming with Xcode 10.2 and brings some updates to the String API in the standard library. Here’s a look at the new character properties that allow you to test for a number of useful Unicode properties.
TWeb.init({scrollToPost:'swiftdevelop/90'});