iOS App #2 — Create an App without Programming!

Cutesweat
彼得潘的 Swift iOS App 開發教室
2 min readMar 20, 2023

--

Here is the demo!

Tabs: The 1st tab contains the brief introduction of Ariana Grande, and the 2nd tab is about her album — Sweetener.

The app is created in the storyboard.

Arianators App

What I learned from this App:

  1. Tab Bar Controller
  2. Navigation Controller
  3. Scroll View
  • horizontal/vertical Scroll: set up “contentSize” to the size of the view inside the scroll view

4. Table View Controller & Static Cells

  • create a table without programming
  • disable the header & footer while scrolling: set the “Estimate” to 0 in Table View
  • customized header/footer: add a view before/after the Table View Section

5. Text View as an invisible link

  • place the Text View on top of the Image View
  • set the size of the Text View to the size of the Image View
  • set the “Background” & “Tint” to clear color
  • place the link in the “Text” field
  • disable “Editable
  • click “Link

6. View with Rounded Corner

  • set up “layer.cornerRadius

7. AccentColor

  • theme color of the App

8. LaunchScreen.storyboard

  • the scene when you first launch the app

The GitHub Link

--

--