강의

멘토링

커뮤니티

Programming

/

Mobile Application Development

iOS App Monetization Start, Swift Grammar Master [Beginner]

When learning Swift, the iOS programming language, it can be confusing when multiple concepts appear all at once. That's why I created this course with the principle that "when understanding a new concept, only previously learned concepts should be used." So this course is meticulously designed with a sequential structure between concepts, where only one new concept appears at each stage, and no other unfamiliar concepts appear at all. One concept per minute, 180 concepts total. From the basics of variables and constants to understanding memory structure from a CS perspective, and even the latest syntax for asynchronous processing. In 3 hours, you'll learn 180 core concepts in the designed order.

(5.0) 13 reviews

95 learners

  • jangsanggu
swift
ios
문법
프로그래밍
코딩테스트
iOS
Swift
oop
Coding Test
Algorithm
Thumbnail

Reviews from Early Learners

What you will learn!

  • Basic Grammar and Data Types

  • Operator

  • Conditional Statements and Flow Control

  • Tuple

  • Loops and Flow Control

  • function

  • Optional

Hello! I'm iOS developer Jang Sang-gu.


I majored in fashion design in Paris and returned to Korea to build my career in the related field. During that time, I had a great opportunity to directly plan and participate in developing a fashion customization platform, and through that experience, I became captivated by the charm of development.

As someone who started development without a technical background, I learned by finding the necessary content on my own and went through trial and error while writing code directly. By building up knowledge piece by piece like this, I eventually successfully launched the Plinn app and began a new career as an iOS developer.

As a non-major learning development, there are common walls that everyone inevitably hits.

This is because when studying Swift, it's easy to get lost in concepts that require CS knowledge such as value types and reference types, memory structure, and asynchronous processing.

I also had to spend countless hours at this stage searching through official documentation and digging through various resources to understand it with great difficulty.


I realized that a course was needed to address exactly those points that non-majors struggle with most in this process.

So I meticulously designed the curriculum to use only previously learned knowledge whenever introducing new concepts.

Through this approach, learners can progress step by step without confusion, moving beyond simply 'memorizing' grammar to fundamentally understanding why code works the way it does.

I want to help you avoid repeating the same trial and error that I went through.

So I first released the app textbook, and then introduced this course through Inflearn.

If you join me, even non-majors can experience a solid path to grow as iOS developers by naturally connecting from the basics to practical work.

Just trust me and follow along, and I will definitely guide you so that you can communicate with the world through the language of development!



When learning Swift, the iOS programming language, it can be confusing when multiple concepts appear all at once.

So I created the lectures with the principle that "when understanding new concepts, only previously learned concepts should be used."


So this lecture is,

Only one new concept appears at each step,

We meticulously designed a sequential structure between concepts to ensure that no unfamiliar concepts appear unexpectedly.



One concept per minute, 180 total.

From the basics of variables and constants to understanding memory structures from a CS perspective, and even the latest syntax for asynchronous processing.

In 3 hours, you will learn 180 core concepts in a designed sequence.



The reason why deep learning is possible in a short time is,

This is because the sequential structure between concepts has been meticulously designed.

Additionally, I boldly excluded typing time.

Most students pause the screen and type along when they're typing on their own anyway, so

You can pause the screen for a moment and type directly to maintain the same learning density while using your time more efficiently.



Why should we understand memory structure and concurrency from a CS perspective?

The important thing when learning programming syntax is

It's about fundamentally understanding "how code works."


One of the explanations you often hear when first learning about classes and structures is

"Classes are reference types, structs are value types."

But it's not just grammar to memorize and move on from

What values are stored where (stack or heap),

when it is referenced and at what moment it is released

Understanding from a memory structure perspective

You can accurately diagnose and resolve issues such as memory leaks.


Also, async/await and MainActor introduced in Swift 5.5

If you don't understand the execution flow of asynchronous code (main thread and external threads)

Fatal mistakes such as UI update errors can occur.


This course provides structured explanations from a CS perspective.

It's not just about 'knowing how to use' the latest syntax,

You can become a developer who thoroughly understands why things work the way they do.



We also provide an app textbook for this course.

If you search for Swift Grammar Master on the App Store

You can download an app textbook that allows you to learn by directly typing the lecture examples.


All examples include explanations that are connected to the lecture content.

I made it so you can review anytime without notes.


Even after the course ends, it will serve as a reliable tool for quickly looking up and reviewing Swift grammar.



Student Benefits

100% completion + review = Starbucks gift card provided!



Recommended for these people

Someone who is just starting to learn Swift and feels overwhelmed about where to begin

Someone who has gone through grammar once but still has concepts getting mixed up in their head

Those who want to quickly overview Swift as a whole and prepare for practical work in a short time



Course Reviews

"I wasn't really planning to study hard or anything, but I just had the lecture on and was watching casually, then ended up getting focused and watching it all the way through...

The tone is really comfortable and Kind but not excessive. When you learn one thing, you can immediately understand the next thing with it, so it was really easy to follow along."


"You know that topic that always comes up when you start Swift, right? Value types, reference types... Honestly, I never really understood it even though I saw it all the time, but this time it clicked a bit. Instead of just showing the definitions, they explained why it works that way, so I think it stuck in my head better."


"Arrays and dictionaries alone have so many features.

I used to just roughly write only what was necessary and move on,

Looking at them one by one this time, I found there were many things I didn't know at all.

The examples are short and concise, so they're not overwhelming, and the explanations are also good because they're free of unnecessary details.


"At first, I thought, 'One minute per concept? Is this even possible?'

When I actually listened to it, the explanations pinpointed exactly the parts that needed explanation, so it wasn't overwhelming at all.

It's not just that it finishes quickly, but the sequence is well-structured so there's hardly any confusion in the middle.

I especially felt this when explaining the differences between classes and structs,

It's not just about making you memorize, but really helping you understand, so I felt like the things I learned were connecting with each other in my head."



Curriculum Highlights

Basic Grammar and Data Types (9 items)

Operators (6)

Conditional Statements and Flow Control (6 items)

Tuple (3 items)

Loops and Flow Control (10)

Functions (16)

Optional (10)

Array (16)

Dictionary (13 items)

Set (9 items)

String Utilization (3 items)

Enumeration (Enum) (5 items)

Classes and Structures Basics (13 items)

Properties and Methods (14)

Nested Types (1)

ARC (1)

Type Checking and Conversion (7 items)

Extension (6)

Protocol (11)

Closures (4)

Higher-order functions (6)

Error Handling (4)

defer statement (1)

Asynchronous Processing (3 items)

Generics (3)



Learning Guide

If you follow just 2 principles, you will develop unshakeable grammar skills.


The first is that when taking the course, please make sure to pause at screens where the complete code is visible and try writing it yourself.

This course does not interpret the code flow step by step, except for new concepts, for efficient learning.

If we did that, a lecture that should finish in 3 hours would end up becoming a 10-hour lecture.


But there's no need to worry.

All example sentences used when learning new concepts are composed only of concepts that have already been learned

Just by writing the entire code yourself, you can understand the code flow on your own.


I strongly encourage you to try writing it yourself.


And second, if you don't completely understand the concept, you shouldn't move on to the next one.

This course has a layered structure, so if one stage becomes unstable, the next stage will also become unstable.

Recommended for
these people

Who is this course right for?

  • Someone who is just starting to learn Swift and feels overwhelmed about where to begin

  • Someone who has gone through grammar once but still has concepts getting mixed up in their head

  • Those who want to quickly overview Swift as a whole and prepare for practical work in a short time

Need to know before starting?

  • This course covers Swift grammar fundamentals step by step, so you can start right away without any special prerequisite knowledge.

Hello
This is

122

Learners

34

Reviews

1

Answers

5.0

Rating

2

Courses

안녕하세요! iOS 개발자 장상구입니다.

 

저는 파리에서 패션 디자인을 전공하고 한국에 돌아와 관련 분야에서 경력을 쌓았습니다. 그러던 중 좋은 기회로 패션 커스터마이징 플랫폼을 직접 기획하고 개발까지 참여하게 되었고, 그 경험을 통해 개발의 매력에 빠지게 되었습니다.

비전공자로서 처음 개발을 시작했기에, 스스로 필요한 내용을 찾아가며 학습하고 직접 코드를 작성하면서 시행착오를 거듭했습니다. 그렇게 하나씩 쌓아가며 결국 Plinn 앱을 성공적으로 런칭, iOS 개발자로서의 새로운 커리어를 시작하게 되었습니다.

비전공자로서 개발을 배우다 보면 누구나 공통적으로 부딪히는 벽이 있습니다.

Swift를 공부하다 보면 값 타입과 참조 타입, 메모리 구조, 비동기 처리 등 CS 지식이 필요한 개념에서 길을 잃기 쉽기 때문입니다.

저 역시 이 단계에서 수많은 시간을 들여 공식 문서를 찾아보고 여러 자료를 뒤지며 어렵게 이해해야만 했습니다.

 

이 과정에서 비전공자가 가장 힘들어하는 바로 그 지점을 해결해주는 강의가 필요하다는 것을 깨달았습니다.

그래서 저는 새로운 개념을 배울 때마다 이미 익힌 지식만 사용하도록 커리큘럼을 정교하게 설계했습니다.

이를 통해 학습자가 혼란 없이 하나씩 단계를 밟아 나가며, 단순히 문법을 ‘외우는 것’을 넘어 코드가 왜 그렇게 동작하는지 본질적으로 이해할 수 있도록 만들었습니다.

저와 같은 시행착오를 여러분이 반복하지 않도록 돕고 싶습니다.

그래서 앱 교재를 먼저 출시했고, 이어서 인프런을 통해 이 강의를 선보이게 되었습니다.

저와 함께 한다면, 비전공자라도 기초부터 실무까지 자연스럽게 연결하며 iOS 개발자로 성장할 수 있는 확실한 길을 경험하실 수 있습니다.

저만 믿고 따라와 주시면 여러분이 개발의 언어로 세상과 소통할 수 있도록 확실하게 이끌어드리겠습니다!

Curriculum

All

62 lectures ∙ (57min)

Published: 
Last updated: 

Reviews

All

13 reviews

5.0

13 reviews

  • clava4764님의 프로필 이미지
    clava4764

    Reviews 1

    Average Rating 5.0

    5

    7% enrolled

    This is great. I got interested in development, pondered how to study, and accidentally found this. It's so convenient to just lie down after work, play the lecture, and use the app. Great for understanding concepts. Seems perfect for starting Swift.

    • choshua11022228님의 프로필 이미지
      choshua11022228

      Reviews 1

      Average Rating 5.0

      5

      7% enrolled

      I had an urgent need to study, so I took this course, and I'm very satisfied as it's easy for beginners to understand :) The lectures aren't long, and the ability to finely divide and replay specific sections felt very convenient. All lectures are free!! I needed this for a school assignment and felt it'd be a shame to pay for a lecture, so I searched diligently and found this one!! Thank you, teacher 🥹

      • lacseoul5511님의 프로필 이미지
        lacseoul5511

        Reviews 1

        Average Rating 5.0

        5

        7% enrolled

        I started this to organize my grammar, which got too jumbled from self-study. The lecture flow is so well-structured, my mind feels clear.

        • trendmill3976님의 프로필 이미지
          trendmill3976

          Reviews 1

          Average Rating 5.0

          5

          8% enrolled

          A lecture that's easy to follow, even without background knowledge! I'm a non-major and new to programming, but the explanations made it feel familiar. Terms were simplified too, so I had no difficulty understanding.

          • sportjm8965님의 프로필 이미지
            sportjm8965

            Reviews 2

            Average Rating 5.0

            5

            100% enrolled

            I started without any burden since it was free, and I completed the entire course. I watched each lecture while practicing examples on the app, read explanations, and reviewed... There was a time I almost gave up on Swift because I couldn't understand optionals, but through this course I learned exactly why they're used from the ground up. I feel somewhat guilty for completing it all for free, so I'm leaving this review!! Thank you~!!

            Free

            jangsanggu's other courses

            Check out other courses by the instructor!

            Similar courses

            Explore other courses in the same field!