Bài đăng

Đang hiển thị bài đăng từ Tháng 4, 2023

IOS app cheat sheet

Hình ảnh
Project files Learning objective: Identify useful files and directories you can access with Project View. To access the entire file structure of a project including all files hidden within folders from the XCode view, select Project from the tab at the top of the Project window. Choosing Project View allows you to see a lot more files and directories. The most important of these are: module-name/ AppDelegate The app delegate is effectively the root object of your app, and it works in collaboration with UIApplication to manage some user interactions with the system. SceneDelegate What is displayed on the screen is the responsibility of SceneDelegate. ViewController The View Controller is the parent of all the views present on a storyboard. Each application has at least one ViewController. It facilitates the transition between various parts of the user interface. Main With the Main.storyboard file you can lay out and design the user interface of your application by adding views such as b...