https://www.raywenderlich.com/113772/uisearchcontroller-tutorial ote : Updated for Xcode 7.3, iOS 9.3, and Swift 2.2 on 04-03-2016 Update note: This tutorial was updated to iOS 9 and Swift 2 by Andy Pereira. Original post by Tutorial Team Member Nicolas Martin. If your app displays large datasets, scrolling through massive lists becomes slow and frustrating. In that case, it’s vitally important to allow users to search for specific items. Lucky for you, UIKit includes UISearchBar which seamlessly integrates with UITableView and allows for quick, responsive filtering of information. In this UISearchController tutorial, you’ll build a searchable Candy app which is based on a standard table view. You’ll add table view search capability, including dynamic filtering, and add an optional scope bar, all while taking advantage of UISearchController , added in iOS 8. In the end, you’ll know how to make your apps much...
Update note: This tutorial has been updated to iOS 11, Swift 4, and Xcode 9 by Michael Ciurus . The original tutorial was written by Scott Gardner . As you probably know, everything you see in an iOS app is a view. There’s button views, table views, slider views, and even parent views that contain other views. But what you might not know is that each view in iOS is backed by another class called a layer – a CALayer to be specific. In this article, you’ll learn what a CALayer is and how it works. You’ll also see 10 examples of using CALayer s for cool effects, like shapes, gradients, and even particle systems. This article assumes you’re familiar with the basics of iOS app development and Swift, including constructing your UI with storyboards. Note : If you’re not quite there, no worries. You’ll be happy to know we have quite a few tutorials and books on the subject, such as Learn to Code iOS Apps with Swift and...
In this blog post I am going to share with you how to upload an image to Amazon AWS S3 Bucket. I have split information into smaller videos and it will cover: http://swiftdeveloperblog.com/image-upload-example/ http://swiftdeveloperblog.com/upload-image-to-aws-s3-bucket-in-swift/ Create AWS S3 Bucket Edit S3 Bucket policy to allow users read files from it Use AWS Cognito to create a Federated Identity Pool Install CocoaPods and use it to download AWS SDK for iOS Write Swift code to upload image to AWS S3 Bucket Introduction Create AWS S3 Bucket AWS Bucket Policy { "Version" : "2008-10-17" , "Statement" : [ { "Sid" : "AddPerm" , "Effect" : "Allow" , "Principal" : "*" , "Action" : "s3:GetObject" , "Resource" : "arn:aws:s3:::learn-swift/*" } ] } Create Federated Identity Pool with AWS Cogni...
Comments
Post a Comment