Home Web Front-end Front-end Q&A From web development to mobile development, this is how I did it

From web development to mobile development, this is how I did it

Dec 01, 2016 am 09:30 AM
web web development mobile development

I started my professional development career as a web developer, using PHP. Soon after, I switched to the .NET ecosystem and continued web development using C# and the ASP .NET MVC framework. All I've ever created were web apps, until recently...

A few months ago I started developing mobile apps with Android and iOS, and then thanks to Xamarin, I can still use C#. The reason why I wrote this article is to share my feelings after making this change.

Why I made this decision

You may ask why I decided to switch from web development to mobile development. Because I want to do something new and learn new skills, although I still have a lot to learn about web programming.

I think mobile apps have a bright future, although there are already many apps in online stores. However, new mobile devices are coming, such as smart watches, and they represent new opportunities for developers. This is a great opportunity to learn how to create applications for mobile devices.

Not to mention that the company I currently work for happens to have this opportunity to develop new Android and iOS applications using my favorite language (C#), so why not take advantage of this opportunity.

New programming model

I know that the way of programming will change. This has been learned from a project called Windows Phone that I have experienced before and participated in the development of mobile applications. But I wasn’t ready for what I was going to do, and didn’t think I could be.

Unlike applications in websites that have a specific lifecycle, you can't just reply to a request with a response. Almost everything I've learned about building web applications doesn't help me - the paradigm is completely new.

Asynchronous programming is mandatory in this field because the application will stall if everything runs on the user interface (UI) thread. I've always wanted to improve my skills in this area, and I've found a great way to achieve this goal.

The separation of concerns is also different. There is no longer Model View Controller (MVC), but the Model View ViewModel (MVVM) pattern is used. Even though I've used it (in WPF and Windows Phone), it's not at the same level and I still have a lot to learn.

Of course, you also have to use a simulator to test the application. Every time you want to test, you have to build and deploy the simulator. You can't just refresh the page to see the changes. The feedback loop is long, taking several minutes most of the time, so debugging will be slow and critical.

Get out of your comfort zone

I started working on the app about two months ago and there is still a lot to learn. I needed to deal with two ecosystems (Android and iOS) that I had no experience with, two frameworks that I knew nothing about (Xamarin and MvvmCross), and some business requirements that were not easy to meet. Fortunately, though, at least I know how to use C#.

Now I am struggling every day. I have a lot of things to consider, the main ones are some "how to do it?" issues related to my new development environment. There are also a lot of “What if?” questions: “What if the network is not available”, “What if this solution is too slow?”, “How can we provide the best experience for our customers?”…

Sometimes, I can't produce anything all day long. To be honest, at that time, I will feel that I am really useless and a swindler - since I can't produce anything of value at work, then How can one consider oneself a professional software developer?

Well, I think this feeling is like stepping out of your comfort zone and being in the peak and valley of the learning stage.

From web development to mobile development, this is how I did it

Learning rate with peaks and valleys

Don’t give up

But I’m not the only one transitioning, I’m not alone in this battle. Everyone on the team has to face the same amount of learning, senior developers and junior developers alike.

Now looking back at my journey in the past two months, I realize that I still have various shortcomings and there is still a lot of road to go, but I have also learned a lot, such as now about asynchronous programming and The concepts of those MVVM patterns are relatively familiar.

If I want to become a professional mobile developer, then I still need to continue learning, continue to complete my journey, learn the skills I lack, and produce value that meets customer expectations. Even though my job makes me miserable from time to time, I don't regret it because it is a great learning opportunity. No matter how long it takes I will succeed.


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to enable administrative access from the cockpit web UI How to enable administrative access from the cockpit web UI Mar 20, 2024 pm 06:56 PM

Cockpit is a web-based graphical interface for Linux servers. It is mainly intended to make managing Linux servers easier for new/expert users. In this article, we will discuss Cockpit access modes and how to switch administrative access to Cockpit from CockpitWebUI. Content Topics: Cockpit Entry Modes Finding the Current Cockpit Access Mode Enable Administrative Access for Cockpit from CockpitWebUI Disabling Administrative Access for Cockpit from CockpitWebUI Conclusion Cockpit Entry Modes The cockpit has two access modes: Restricted Access: This is the default for the cockpit access mode. In this access mode you cannot access the web user from the cockpit

What are the advantages and disadvantages of C++ compared to other web development languages? What are the advantages and disadvantages of C++ compared to other web development languages? Jun 03, 2024 pm 12:11 PM

The advantages of C++ in web development include speed, performance, and low-level access, while limitations include a steep learning curve and memory management requirements. When choosing a web development language, developers should consider the advantages and limitations of C++ based on application needs.

Is PHP front-end or back-end in web development? Is PHP front-end or back-end in web development? Mar 24, 2024 pm 02:18 PM

PHP belongs to the backend in web development. PHP is a server-side scripting language, mainly used to process server-side logic and generate dynamic web content. Compared with front-end technology, PHP is more used for back-end operations such as interacting with databases, processing user requests, and generating page content. Next, specific code examples will be used to illustrate the application of PHP in back-end development. First, let's look at a simple PHP code example for connecting to a database and querying data:

Golang's browser support: building an interactive web Golang's browser support: building an interactive web Apr 07, 2024 pm 04:03 PM

Go builds interactive web applications that run in the browser. Steps: Create Go project and main.go file, add HTTP handler to display messages. Add forms using HTML and JavaScript for user input and submission. Add handling of POST requests in your Go application, receive user messages and return responses. Use FetchAPI to send POST requests and handle server responses.

How to implement h5 to slide up on the web side to load the next page How to implement h5 to slide up on the web side to load the next page Mar 11, 2024 am 10:26 AM

Implementation steps: 1. Monitor the scroll event of the page; 2. Determine whether the page has scrolled to the bottom; 3. Load the next page of data; 4. Update the page scroll position.

How to get started with web development using C++? How to get started with web development using C++? Jun 02, 2024 am 11:11 AM

To use C++ for web development, you need to use frameworks that support C++ web application development, such as Boost.ASIO, Beast, and cpp-netlib. In the development environment, you need to install a C++ compiler, text editor or IDE, and web framework. Create a web server, for example using Boost.ASIO. Handle user requests, including parsing HTTP requests, generating responses, and sending them back to the client. HTTP requests can be parsed using the Beast library. Finally, a simple web application can be developed, such as using the cpp-netlib library to create a REST API, implementing endpoints that handle HTTP GET and POST requests, and using J

What skills and resources are needed to learn C++ web development? What skills and resources are needed to learn C++ web development? Jun 01, 2024 pm 05:57 PM

C++ Web development requires mastering the basics of C++ programming, network protocols, and database knowledge. Necessary resources include web frameworks such as cppcms and Pistache, database connectors such as cppdb and pqxx, and auxiliary tools such as CMake, g++, and Wireshark. By learning practical cases, such as creating a simple HTTP server, you can start your C++ Web development journey.

Why Choose PHP as Your Language of Choice for Web Development Why Choose PHP as Your Language of Choice for Web Development Mar 16, 2024 am 08:45 AM

Why choose PHP as the preferred language for web development? In today's Internet era, web development has become a very important field. And choosing a suitable programming language is crucial for developers. Among many programming languages, PHP is favored by developers as a powerful web development language. This article will explore from several aspects why PHP is chosen as the preferred language for web development. First of all, the popularity and popularity of PHP is one of the important reasons for choosing it. PHP is a widely used language

See all articles