Solution to quickly read specific information from Android live app source code

In order to quickly read specific information, display or verify it in the source code of cloudleopard live app, the most popular solution is to "scan QR code". In this way, users do not need to use complex memory and logic. They can realize the requirements with a gentle sweep. It is very common in all kinds of apps. So today, let's ...

Added by PHPFreaksMaster on Wed, 19 Jan 2022 12:02:34 +0200

Take you to a Netease cloud music home page (Part I)

preface Hello, everyone, I've been learning to encode with Swift recently. Because many previous projects were implemented with OC, I'm still in the stage of learning about Swift. In order to improve my learning efficiency, I will set a short-term goal for myself every time. This time, in order to speed up my starting Swift, my goal is to comp ...

Added by zxiny_chin on Sat, 15 Jan 2022 23:28:34 +0200

Implementation of IOS Tom Cat Game

After learning a lot of ios knowledge, today we will realize a classic little game, tom cat game, without much nonsense, and directly enter the topic. 1, Effect display 2, Preparation and knowledge points 1. Because the program generates various effects through a series of animations formed by pictures, we need to prepare the pictures requ ...

Added by Dale on Fri, 14 Jan 2022 20:11:09 +0200

swift installation skills: how to use map to generate arrays and write 2 lines less code than for (with demo code)

Let's start with the conclusion: map uses 3 lines of code to solve the problem of 5 lines of code in the for loop, which is equivalent to a 40% increase in efficiency You can't learn without (I said) If you don't use it, you won't be able to use it Because you don't know the usage scenario, you can't use it because you haven't learned it ...

Added by MilesStandish on Fri, 14 Jan 2022 02:57:58 +0200

14. Draggable drag control of fluent widgets

Draggable series components allow us to drag components. Draggable The Draggable component has two parameters that must be filled in. The child parameter is a child control and the feedback parameter is a component that moves with drag. The usage is as follows: Draggable( child: Container( height: 100, width: 100 ...

Added by igorlopez on Wed, 05 Jan 2022 22:52:36 +0200

Swift's practice in 58 anjuke real estate

01 Background In 2014, Apple released a new language Swift at WWDC. Since then, it has been continuously updated, iterated and optimized. Major companies ...

Added by mouli on Wed, 05 Jan 2022 13:48:34 +0200

Compile WebRTC under Mac (Mac and iOS versions)

prefaceWith the influence of COVID-19, the demand for audio and video has explode in the past two years. In the field of audio and video, WebRTC can be said to be an inseparable treasure house, including the whole process of audio and video acquisition, encoding and decoding, transmission and rendering. This article mainly records the whole pro ...

Added by awpti on Tue, 04 Jan 2022 13:51:51 +0200

iOS voice to text implementation

At present, an IM APP is being developed. Internal friends can send voice. Long press is required to realize the function of voice to text. Previously, Alibaba NUI was used Framework, but this crap often repeats the text transferred out. It can't be handled even with multi-channel control. The experience is too poor. No way, I decided to replac ...

Added by nickmanners on Sat, 01 Jan 2022 04:17:56 +0200

Use AVPlayer to customize the player that supports full screen - Swift reconstructed version

preface A long time ago, a simple video player was open-source. Due to its long disrepair, the effect was terrible. Recently, it specially took time to deeply reconstruct it. The old version will not be maintained later. The new version is implemented by Swift, and more functions will be added later. If you don't want to read the text, please d ...

Added by ringartdesign on Wed, 29 Dec 2021 20:42:17 +0200

iOS attribute keyword

Several iOS attribute keywords 1.nonatomic,atomiac: Nonatomic: nonatomic, atomiac atomic. The default attribute is atomiac, that is, atomic. Nonatomic has high execution efficiency. atomiac: reading and writing is safe, but inefficient, not absolutely safe. 2.readwrite,readonly: Readwrite read-write, readonly read-only. The default property ...

Added by ddubs on Wed, 29 Dec 2021 09:34:41 +0200