- Xamarin Blueprints
- Michael Williams
- 177字
- 2021-07-08 11:48:18
Create an iOS project
Let's begin our Xamarin journey; we will start by setting up our iOS project in Xamarin Studio:
- Start by opening Xamarin Studio and creating a new iOS project. To do so, we simply select File | New | Solution and select an iOS Single View App; we must also give it a name and add the bundle ID you want in order to run your application.
Note
It is recommended that for each project, a new bundle ID is created, along with a developer provisioning profile for each project.
- Now that we have created the iOS project, you will be taken to the following screen:

Doesn't this look familiar? Yes, it is our AppDelegate
file; notice the .cs
on the end; because we are using C#, all our code files will have this extension (no more .h
or .m
files).
Tip
Before we go any further, spend a few minutes moving around the IDE, expanding the folders, and exploring the project structure; it is very similar to an iOS project created in XCode.
推薦閱讀
- Visual C++數字圖像模式識別技術詳解
- Servlet/JSP深入詳解
- PHP 7+MySQL 8動態網站開發從入門到精通(視頻教學版)
- Go語言開發實戰(慕課版)
- ASP.NET Web API Security Essentials
- 大數據時代的企業升級之道(全3冊)
- Akka入門與實踐
- Mastering ASP.NET Core 2.0
- JavaScript前端開發基礎教程
- VMware vSphere Design Essentials
- 優化驅動的設計方法
- Java核心技術速學版(第3版)
- INSTANT Apache Maven Starter
- Visual C++實用教程
- Boost.Asio C++ Network Programming Cookbook