iOS - Summary of Common Programming Specifications

All specifications for programming languages, if not written here, are in Apple's documentation: Objective-C programming language Cocoa Basic Principles Guide Cocoa Coding Guide iOS Application Programming Guide Catalog Point grammar spacing Conditional judgement ternary operator error handling Method variable name Notes init and deallo ...

Posted by pentinat on Mon, 01 Apr 2019 07:15:32 -0700

Release Flash after ViewController Creation

Problem description When you are working on a project, you encounter a flashback problem. Looking at the code logic, you can see that the following code causes crash. - (IBAction)buttonTouchUpInside:(id)sender { TestTableViewController *vc = [[TestTableViewController alloc]init]; } Yes, you did not read it wrong. The code above will cau ...

Posted by Barnacles on Sun, 31 Mar 2019 11:27:28 -0700

iOS fingerprint identification login process and Implementation

Change from: Ren Bo'an Brief Book Chatting Recently, I've been chasing after Qingyun Zhi. I always feel that TV plays are not as wonderful as novels. Yes, the acting skills of the big cafes are amazing and the adaptation of the plot is compact, but it has to be said that many things can not be achieved by acting alone. The protagonist's hea ...

Posted by echoofavalon on Sun, 31 Mar 2019 08:15:29 -0700

Android Custom view What You Need to Know

The knowledge about Android's customized view is an unavoidable knowledge module for both interviews and in-depth study. Some of the open source controls we use are hundreds of lines of code, which makes it difficult for us to customize the view. But when we read articles like Guo Lin, Ren Yugang, a well-known blogger, explaining customized vi ...

Posted by Lucidnight on Sun, 31 Mar 2019 00:48:30 -0700

Library Management System

Problem description The system requires the establishment of a library management system, which has the functions of storage, update, query, statistics, ranking, output, and book borrowing and booking. Through this subject, we can master the data type, programming statement, function definition and invocation meth ...

Posted by True`Logic on Sat, 30 Mar 2019 14:48:30 -0700

Objective-C Simple Music Player

AVAudio Player is mostly used for music broadcasting in Objective-C. It has many advantages: (1) Music of any length can be played; (2) It can be played circularly; (3) The playing time can be controlled; (4) The volume of the vocal tract can be controlled to achieve stereo effect; (5) The volume can be adjusted.   But AV ...

Posted by Patioman on Sat, 30 Mar 2019 14:12:30 -0700

Tracking user information using canvas fingerprinting

Summarize the process of using canvas fingerprinting Requirement Analysis Tips pictures are not posted, wait for me to test to post to you, upload pictures is very troublesome, find a quick way to mark down; Number of points Whether to land Landed. Record userId to determine whether to praise Not logged in 1:Problems wil ...

Posted by idire on Fri, 29 Mar 2019 05:15:29 -0700

Solution of WebView Attachment Problem in android

Many app projects now have the need to embed html, so there are many benefits in designing products. An HTML can run on many platforms at the same time (android, ios, web side). From an android perspective, the component used to load html is webview. We all know the benefits of webview: 1. It can display and render web pages directly. 2. Dir ...

Posted by Awanka on Fri, 29 Mar 2019 04:12:30 -0700

Unity5-ABSystem(3): AssetBundle Loading

Reprinted from: http://blog.csdn.net/lodypig/article/details/51872595 Unity Special Path Resources StreamingAssetsPath PersistentDataPath DataPath Synchronous loading Core function Unable to load synchronously on Android platform Example Asynchronous loading Core function Example WWW Asynchronous Loading Resource loading ...

Posted by stefan63 on Fri, 29 Mar 2019 02:00:28 -0700

iOS Develops Cached Data in Clear Sandbox Path

Introduction: When dealing with network resources, mobile applications usually do offline caching, among which picture caching is the most typical, and SDWebImage is the most popular offline caching framework. However, offline caching will occupy the storage space of mobile phones, so the cache cleaning function has basically become the ...

Posted by Toshiba23 on Thu, 28 Mar 2019 17:57:27 -0700