Memo App With Swift

Overview

#MEMO:RE

간단한 iOS 메모장 앱

기능

  1. 작성한 메모 리스트 작성순 정렬
  2. 메모 작성 및 수정 (개행하기전까지 제목 미리보기 가능)
  3. 메모 고정 및 삭제
  4. 메모 제목 및 내용으로 검색
  5. 작성 메모 공유

화면 구성

  • 런치스크린 및 온보딩


  • 메모 리스트 메인 화면 및 검색


  • 메모 작성(수정) 및 공유


  • 메모 고정 및 삭제


기기별 테스트

  • iPhone 8

  • iPhone 13 Pro Max


개선해야할사항

  1. corner radius 오류 수정
  2. 공유시 사용자에게 처리 알림
  3. 고정된 메모 없을 시 섹션 지우기
  4. 코드 리팩토링
You might also like...
iOS app for Ribbit, Broker API Reference App
iOS app for Ribbit, Broker API Reference App

Ribbit Reference Implementation (iOS) The reference implementation for designing the iOS user interface of a broker-dealer trading application with th

The app provides additional actions for the Shortcuts app on macOS and iOS.
The app provides additional actions for the Shortcuts app on macOS and iOS.

Actions Supercharge your shortcuts The app provides additional actions for the Shortcuts app on macOS and iOS. Submit action idea (Submit an issue bef

A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories.
A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories.

A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories. The app is simple, intuitive, and easy to use and update tasks informations.

The app demonstrates how to use Firebase in a SwiftUI iOS app

Firebase SwiftUIDemo app This app demonstrates how to use Firebase in a SwiftUI iOS app. Firebase Setup Go to firebase.com Click new project. Copy app

Stocks-App - App that allows the user to track stocks of their choice
Stocks-App - App that allows the user to track stocks of their choice

Stocks-App App that allows the user to track stocks of their choice (Coming soon

NetFun-ios-app - iOS app using BFF service to display processed data.
NetFun-ios-app - iOS app using BFF service to display processed data.

NetFun-ios-app iOS app using BFF service to display processed data. The iOS demo developed in SwiftUI and it uses BFF service to show expected UI comp

An iOS app that visually clones Spotify's app and consumes the official Spotify's Web API to show(and play) songs, podcasts, artists and more.
An iOS app that visually clones Spotify's app and consumes the official Spotify's Web API to show(and play) songs, podcasts, artists and more.

SpotifyClone An iOS app that visually clones Spotify's app and consumes the official Spotify's Web API to show(and play) songs, podcasts, artists and

 Quotes App - quotes browsing app which is built with Quotable Free API completely in UIKit
Quotes App - quotes browsing app which is built with Quotable Free API completely in UIKit

Quotes App is quotes browsing app which is built with Quotable Free API completely in UIKit

Comments
  • WriteMemoViewController 질문

    WriteMemoViewController 질문

    https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/ViewController/WriteMemoViewController.swift#L12-L98


    • forced unwrapping을 사용한 이유는 뭔지 궁금. https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/ViewController/WriteMemoViewController.swift#L13-L14

      • optional 값을 계속 활용하는게 어떨지, guard let 구문이랑 optional chaining 등을 많이 활용했던 것 같음. 계속해서 에러 발생할 수 있는 구간 체크하는 형태로 작성 ==> 코드가 불편하고 짜증나는데 안전하기도 하고 나름 guard let 이 어느정도 정리해주는 느낌. ==> early exit 매우 중요. force-unwrapping 은 피하고, guard let / if let 으로 대체. defer 사용할 일이 있다면 사용하면 좋음.
    • 굳이 설명 안 해도될 주석 넣을바에 함수명을 자세하게 적는걸 개인적으로는 선호함

    • 코드 빈줄 갯수, 코드 띄어쓰기 규칙 등 동일하게 가게

    • backActionHandler는 뒤로가기 했을 때나 작업 완료 후에 해야할 일들을 메인 뷰컨트롤러 쪽에서 수행하도록 전달하려고 이렇게 작성한건지?? ==> 이방법말고 다른 방법으로 수행하도록 고민을 해본적이 있는지 https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/ViewController/WriteMemoViewController.swift#L19

    opened by otakijae 1
  • Extension 관련 질문

    Extension 관련 질문

    https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/Extension/UILabel%2BExtension.swift#L10-L34


    • extension 파일 네이밍은 이렇게 하는게 규칙인지?? 예전에 봤을때도 이렇게 만드는게 많았던 것 같은데 궁금궁금
    • 여기에서도 함수는 뭔가 동사 형태이면 좋지 않을까
      • 가령, makeHighlight, removeHighlight??
    • 에러 처리 따로 필요 없을지? 출력만 하면 될지, 로깅처리하는 것도 모듈로 빼서 처리하도록 해도 좋을 듯, 에러 발생시 트랙킹하기 위해 처리하는 모듈이 따로 있어서, 에러 발생할 수 있는 구간에 활용하는게 어떨지https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/Extension/UILabel%2BExtension.swift#L23
    opened by otakijae 0
  • app delegate 질문

    app delegate 질문

    https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/AppDelegate.swift#L12-L44


    • 런치스크린 확인용 명시하지 않으면 무슨화면이라 하더라, 스플래쉬 안 보이는지? https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/AppDelegate.swift#L17

    • appDelegate에서 굳이 명시한 이유는?? 혹시 스토리보드에서 설정 가능한게 아닌지 궁금해서

    UIImageView.appearance().backgroundColor = .clear
            
    UITableView.appearance().backgroundColor = .clear
    UITableViewCell.appearance().backgroundColor = .clear
    UITableViewCell.appearance().selectionStyle = .none
    
    • 콜백함수라 하는지, delegate 오버라이딩 함수라고 하는지 잘 모르겠지만... 사용 안 하면 지워도 되지 않는지 확인하면 좋을 듯 https://github.com/yeop96/iOS_MemoApp/blob/b908230fdddba3e753e49fc4394c56086f29920c/MemoApp/AppDelegate.swift#L37
    opened by otakijae 0
Owner
Yeop
🦊🌏🐋
Yeop
In this mini app covered the concepts like basics of SwiftUI and Navigations and Animations and List with CRUD functions and MVVM and App Launch and App icons adding and also applied persistence using UserDefaults Concept.

TodoList In this application used the concepts from the beginner level project of SwiftUI_Evolve_1 The following concepts covered in this mini app Swi

Sivaram Yadav 2 Dec 4, 2021
Todo-app-swift- - A Todo Lists app built using swift

TODO-Lists App Available on the App Store What is this? This is a todo app I mad

Kushal Shingote 3 Feb 20, 2022
IOS-Quiz-App- - A trivia quiz app built with Swift using MVC structure

Quiz App A trivia quiz app built with Swift using MVC structure. Default Quiz

null 0 Feb 25, 2022
Ios-weather-app - A simple weather app with swift

AHOY Assignment Weather app Main Screen Settings Architecture The Architecture u

null 0 Jan 29, 2022
Marvel-App - Marvel App For iOS Using Swift

App Previews Home Screen Detail View Features Async await UICollectionViewCompos

null 0 Feb 14, 2022
This To-Do app was developed using Swift and SwiftUI and works on iOS, MacOS (Apple Silicon) and WatchOS. The tasks are kept on storage even when the app is restarted.

ToDo-SwiftUI This app has a lot of sentimental value for me, given that it helped me a lot to understand the process of doing an iOS app and became th

Augusto Galindo Ali 6 Jul 12, 2022
In app "App Update" button library in swift

What is Upstream? It gives you a magic button, because this button will only appear when there is an app update available on appstore for given app. P

Mohammad Yasir 6 Jun 22, 2022
Porting the example app from our Advanced iOS App Architecture book from UIKit to SwiftUI.

SwiftUI example app: Koober We're porting the example app from our Advanced iOS App Architecture book from UIKit to SwiftUI and we are sharing the cod

raywenderlich 55 Dec 19, 2022
Quotes App is quotes browsing app which is built with Quotable Free API completely in SwiftUI.

Quotes App is quotes browsing app which is built with Quotable Free API completely in SwiftUI. You can watch the whole journey of building this

Dheeraj Kumar Sharma 32 Nov 22, 2022
SwiftUI App to view the App Activity Record from iOS 15

App Activity Viewer A viewer for the iOS 15 "Record App Activity" export. FAQ How do I create an App Activity Report? Go to the "Settings" app of your

Jannik Arndt 13 Nov 16, 2022