SSUMC-6th / iOS_A

SSUMC 6기 iOS 스터디 A조
0 stars 0 forks source link

[Baki/week9] Token(2) #69

Closed heemings closed 4 months ago

heemings commented 4 months ago

📍Summary

로그인, 회원가입 구현

💡PR Point

// 사용자 검증
        if let user = users.first(where: { $0.username == username && $0.password == password }) {
            isLoggedIn = true // 로그인 성공 시 SuccessView를 표시하기 위해 isLoggedIn을 true로 설정
        } else {
            alertMessage = "로그인 실패: 유효하지 않은 사용자 정보입니다."
            showAlert = true
        }

사용자 검증 부분

🤔 Question

단순 로그인, 회원가입 구현에서 api를 어떤 걸 사용해야 할지 모르겠어요

🔑 Simulator

Simulator Screen Recording - iPhone 15 Pro - 2024-06-19 at 15 42 15