iOS componentization was once a hot topic in the industry, but now few people mention it again. There are many articles and ideas about componentization on the Internet. The most classic one is the debate between Casa and Mogujie on componentization. When I think about these articles, I think componentization is such an excellent idea. I think what they say makes sense, and Casa should have given me and other programmers a lot of inspiration in many ideas. Does the debate between the two architects make you truly understand the importance of componentization? Does it resonate with you deep in your heart? I recently saw a project that made me think more about componentization.
1. Why do we need componentization? What are the benefits of componentization? Why do we need componentization? After reading many excellent articles, you will definitely ask this question: how much benefit can componentization bring us? As a small company, there are few opportunities to involve componentization. Without work experience in large factories, it is difficult to understand componentization thoroughly. You may think that our business modules are not enough, or that we do not understand its benefits. In fact, the biggest benefit of componentization is that each component and each module may become an app alone with its own life cycle. In this way, it can be divided into different business group modules for processing. I heard that JD.com has a team dedicated to the message module, a team dedicated to the advertising module, and a team dedicated to the discovery module. You will find that if there is no good componentization idea, such multi-team cooperation is very difficult, and it is already difficult to maintain the development iteration of this project. Having said so much, what does componentization look like? Then I will follow my footsteps, learn, analyze, and discuss. 2. The core idea of componentization The core idea of componentization, which is also the basic framework for componentization, is how to achieve componentization, or how to achieve architecture from multiple levels such as architecture layer and business layer. To achieve componentization, it is actually to build an intermediate conversion tool. You can also think of it as routing, which can realize cross-business data communication through the idea of routing, thereby reducing the coupling of data at each layer to a certain extent. Reduce the coupling of imports at each business layer and other levels. 3. The current implementation of componentization There are three general ideas for implementation at present:
Procotol Protocol Registration Scheme Regarding the procotol protocol registration scheme, few people use it, and few people share it. I also saw it in this project and studied it. Use JJProtocolManager as an intermediate conversion.
The procotols and services provided by all components are centrally managed by the middleware, and the procotols and services provided by each component correspond one to one. For example: In JJLoginProvider: the load method will be called when the application starts, and it will be registered in JJProtocolManager. JJLoginProvider complies with the JJLoginProvider protocol, so that some methods can be provided to the outside world according to business needs.
In this way, you can directly obtain the service provider JJLoginProvider corresponding to JJLoginProtocol through JJProtocolManager when you need to log in to the business module. As follows:
URL Routing Scheme The most classic URL routing solution is Mogujie's routing componentization, which encapsulates the calling method, calling parameters, and callback method into the URL through the URL, and then obtains the method name and parameters by parsing the URL, and finally calls the method through the message forwarding mechanism. The following is the routing method of Mogujie: (If you want to learn more about it, you can learn about the routing componentization of Mogujie)
The home page only needs to call [MGJRouter openURL:@"mgj://detail?id=404"] to open the corresponding detail page. Here you can see that we use the URL shortening method to splice the parameters into the URL query part, so that we can parse the scheme, host, path, and query in the URL to get the controller to transfer to and the parameters to pass, so as to push or present the new page. Parsing scheme, host, path core code:
The core code for parsing query:
In this way, we can achieve componentization, but sometimes we will encounter an image editing module that cannot pass UIImage to the corresponding module. Here we need to pass a new parameter in. In order to solve this problem, we can actually throw the parameter directly to the arg processing behind.
For example:
The project I looked at achieved componentization through URL parsing and protocol registration, but it did not register which URL types it supported like Mogujie did. target-action scheme The target-action solution is based on the study of Casa master, CTMediator Casa God believes that
The componentization of Casa is mainly based on the Mediator mode and the Target-Action mode, and the runtime is used in the middle to complete the call. This componentization solution separates the remote application call and the local application call, and the local application call provides services for the remote application call, which is exactly the opposite of the Mogujie solution. Calling method: Let's talk about local application calls first. Local component A calls [[CTMediator sharedInstance] performTarget:targetName action:actionName params:@{...}] somewhere to initiate a cross-component call to CTMediator. CTMediator generates a target instance and the corresponding action selector based on the obtained target and action information through objective-C runtime conversion, and then finally calls the logic provided by the target business to meet the requirements. In a remote application call, the remote application uses openURL to let the iOS system find an application that can respond to the URL (in the context of our current discussion, this is your own application) according to the scheme configuration in info.plist. After the application receives the URL through AppDelegate, it calls CTMediator's openUrl: method to pass in the received URL information. Of course, CTMediator can also use openUrl:options: to receive the accompanying options, depending on whether the necessary and sufficient conditions for your local business execution logic include option data. After passing in the URL, CTMediator parses the URL and routes the request to the corresponding target and action. The subsequent process becomes the local application call process mentioned above, and finally completes the response. The routing operation for requests rarely uses the method of recording routing tables in local files. The server often handles this kind of business. In the server field, routing parsing is basically done through regular expressions. Routing parsing in the App can be done more simply by formulating URL specifications. The simplest way is scheme://target/action. A simple string processing can extract the target and action information from the URL. For example:
It seems that the target-action routing solution is clearer, but it depends on your needs. Next, the core code of target-action is:
Summarize: Based on the obtained target and action information, CTMediator generates a target instance and the corresponding action selector through objective-C runtime conversion, and then finally calls the logic provided by the target business to meet the requirements. Here are three ways to implement Git's address code: https://github.com/lumig/JJRouterDemo Easter Eggs:
|
<<: Apple is asking you to replace the screen or hard drive. Check if your device is in the range.
“Mobile Taobao” has finally been renamed “Taobao”...
On October 24, 2024, Liu Jun, deputy manager and ...
Introduction As the project continues to iterate,...
A few years ago, Chery QQ was everywhere on the s...
Self-driving cars without drivers behind the stee...
Since the spring In addition to the flying catkin...
2005 to 2010 should be the golden year for the de...
With the development of the Internet, the short v...
Professional Douyin and Kuaishou likes-boosting p...
According to the market penetration rate of small ...
The International Energy Agency (IEA) has recentl...
I often see this question on Souwai Q&A, Zhih...
You may have seen these two "training" ...
1. Introduction to advertising types 1. App Store...