Analysis of runtime Running Mechanism in iOS

Analysis of runtime Running Mechanism in iOS http://blog.csdn.net/fuzheng0301/article/details/46898405 First, consider two questions: First question, 1) What is the mechanism of runtime implementation, how to use it, and what is it generally used for?   I'm not going to beat around the bush with you on this question. I'll ...

Added by steveDD on Wed, 17 Jul 2019 02:15:59 +0300

Android Alipay SDK Development Notes

I. Preparations Download Development Kit https://b.alipay.com/order/productDetail.htm?productId=2014110308141993&tabId=4#ps-tabinfo-hash In the "Alipay wallet payment interface development kit" under the compression pack, there are Andoid using Alipay's JAR and Demo. 2. Create Alipay applications Application creation in Alipay op ...

Added by UKlee on Tue, 16 Jul 2019 21:32:03 +0300

Summary of Interface Fluency Learning

Recognize that you are still garbage After deleting all the previous articles and closing the blog, I feel that some articles I wrote before are too rubbish, so I will review them for my own amusement. It's a good thing to think of your own dishes. At least you know that you need to continue to learn, and at least you have the motivation to con ...

Added by shturm681 on Tue, 16 Jul 2019 20:49:35 +0300

An iOS line of code takes you to the system settings page

In iOS development, sometimes it involves jumping to the interface set by the system, such as turning on Bluetooth, notification, etc. No more nonsense, just above: Demo gives 31 jumps of the interface, of course you can also jump to other pages according to the rules reflected in the third step below ~ 1.gif 2.gif 3.gif 4.gif 5.gif S ...

Added by frijole on Tue, 16 Jul 2019 19:30:47 +0300

UILabel Related Property Settings

stay iOS UILabel is a commonly used control in programming. Here is a way to set the relevant properties of UILabel. Many iOS 6 programming starts with storyboard, and when UILabel is used, controls are dragged into storyboard to generate implementations. If you want to use code in - (void)viewDidLoad, such as [_label]. InititWithFrame ...

Added by Hafkas on Mon, 15 Jul 2019 23:21:40 +0300

Three ways of interaction between JS and native OC

Three Interactive Ways between JS and Primary OC When you are working on a project, you should also encounter the need for communication between h5 and OC to achieve a specific effect, so I summarize the interaction between the two recently used ways: By intercepting the URL in the proxy method of UIWebView Implemented by JavaScript Core. F ...

Added by andreiga on Mon, 15 Jul 2019 21:06:28 +0300

Notes on the Use of input Tags in Android

Notes on the Use of input Tags in Android Recently encountered a demand, html page has a <input type="file"/> tag to call the client's photo taking and photo selection function, in iOS can be normally set up to take photos, select photos. But there's no response on Android, and that's what I expected. Of course, I'll find ...

Added by GoSharks on Sat, 13 Jul 2019 22:47:39 +0300

mooc_Sort-Select/Insert/Bubble/Hill

1. Selection sort Time complexity O(n^2) Main processes: Selection sort is to select next to each other and put it in front of the small one. If you want to choose a small one, you need to have a comparative object. The first number of selected arrays is the minimum value by default, and then compares with the latter one in order ...

Added by tridean34 on Fri, 12 Jul 2019 02:35:41 +0300

Learning Object-C classes and functions from command-line programs

[experimental environment] Playing IOS on virtual machines really makes people want to raise their desks (')( Pro-test VMWare12, MACOS 10.10.5, Xcode 7.2 can be compatible with each other, the highest supported IOS version is 9.2, with download address, installation tutorial can Baidu itself. VMWare WorkStations 12: Link: http://pan.baidu.com ...

Added by countcet on Sun, 07 Jul 2019 22:46:40 +0300

iOS Animation Series No. 9: Implementing Spotted Animation and Playing Fluctuation Indicators

iOS Animation Series, a total of 10. Now I'm going to write the ninth article. Interest can be entered into several other articles through the transmission gate below. Chapter 1: One of the iOS Animation Series: Learning the principles of CALayer and Perspective through actual combat. Make a clock animation with a time-second pointer (Part ...

Added by bcoffin on Sun, 07 Jul 2019 00:34:59 +0300