Preliminary Study of Alamofire (Background Download)

Alamofire Background Download Background download Let's take a look at Apple's native background download first. Alamofire Background Download Background download Since iOS 7, Apple has launched NSURLSession, enabling background downloads. Let's take a look at Apple's native background downl ...

Posted by el_kab0ng on Tue, 24 Sep 2019 02:38:09 -0700

Swift's Practical Combat Skills

Swift's Practical Combat Skills From OC to Swift, the difference is quite big. This article records that I went from OC to Swift. OC Turn to some of the problems I encountered in Swift development process, and then write down the problems I encountered. In general, some of the techniques under Swift language are helpful to those in need. Pro ...

Posted by Jezza22 on Fri, 09 Aug 2019 04:06:38 -0700

IOS code obfuscation, waistcoat obfuscation on the shelf (Python script obfuscation iOS project)

Preface I've been looking at Python lately, and I also like the flexibility of Python. Today I want to talk about code obfuscation in iOS. Why do I want to do code obfuscation? For the sake of the security of APP, in order to prevent others from cracking our code easily; and to make vest bags, we know that the market demand for vest bags is ver ...

Posted by skorp on Fri, 09 Aug 2019 01:02:57 -0700

AAChartKit is an extremely elegant iOS open source graphics library

AAChartKit AAChartKit project is based on the popular open source front-end graph library Highcharts, encapsulated object-oriented, a group of simple, easy-to-use, extremely beautiful chart drawing controls. Adapt iOS 7, support ARC, support OC language, simple configuration. Powerful, support columnar graph, bar graph, polyline graph, filling ...

Posted by celavi on Thu, 11 Jul 2019 14:34:52 -0700

Three-terminal Router for iOS Hot Repair Architecture

MVP is a very good design mode, which can decouple code, layered business and componentized products, but can it be further improved? Coupling in the project is very few now, but the switch before the controller still exists. What way can zero-coupling of the controller be achieved? That's to say, this system needs to be sacrificed. The core Ro ...

Posted by NightCoder on Tue, 09 Jul 2019 11:53:56 -0700

Swift: Variable parameters

From: https://addicechan.github.io/... In Swift, when naming a method parameter, you can use Variadic Parameters directly if you have more than one specific type of parameter. Official Document Links Using variable parameters is actually very simple. That's to add... to the parameter type. For example, Int... In fact, if the parameter is called ...

Posted by thiggins09 on Fri, 05 Jul 2019 15:43:21 -0700

How do I write app s that are as dreamy as Spirit Treasure?

Original: How To Make An App Like Pokemon Go Author: Jean-Pierre Distler Translator: kmyhy One of the most popular mobile games today is the Dreamy Wizard.It uses augmented reality technology to bring games into the "real world" and allow players to do something healthy. In this tutorial, we will write our own Augmented ...

Posted by yacaph on Mon, 01 Jul 2019 15:03:58 -0700

How Swift 3.0 iOS Draws 1 PX Wide Edge

Custom UIView Drawing 1px Border Stroke I am also a beginner. I spent half a day researching how to make 1px rectangular boxes with rounded corners. I also checked for half a day. Finally, I came out and shared it with the beginners. Recommended tutorials Stanford University and iOS 10 swift tutorials, can be downloaded directly in iTun ...

Posted by Atiq on Wed, 26 Jun 2019 17:00:31 -0700

Literal can be used in Swift. Did you make it?

Brief comment: Look at this Swift code: let link:LinkedList = [1,2,3,4,5,6,7,8] link is not an array. After reading this article, you will understand. Since 2012, NSDictionary, NSArray, NSNumber or NSString can be initialized using "literal" expressions. NSNumber *numb = @1; NSArray *things = @[@3,@45,@65]; NSDictionary *map ...

Posted by farkewie on Sun, 23 Jun 2019 16:29:34 -0700

Swift encapsulates a video player VGPlayer

Banners.png # Preface Before learning Swift, I had always wanted to do a project. This time I decided to spend nearly a month of my free time encapsulating a video player based on AVPlayer. # Source code GitHub address: VGPlayer What suggestions can be put forward, leave a message under the blog, code writing is also generally expected to t ...

Posted by - - NC - - on Sat, 22 Jun 2019 13:40:23 -0700