Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[보고] 맛집리스트 #7

Open
wants to merge 47 commits into
base: check
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
6b48317
feat: storyboard 삭제
hemg2 Oct 9, 2023
cc45637
feat: framework 추가
hemg2 Oct 9, 2023
09c933b
feat: framework 적용 빌드 확인
hemg2 Oct 9, 2023
a3b5b63
feat: mapTest
hemg2 Oct 9, 2023
2dc75c9
feat: 위치 정보 동의
hemg2 Oct 10, 2023
dd6d0bb
feat: 포인트 메서드 추가
hemg2 Oct 10, 2023
9ef4c9d
feat: 시뮬레이터 추가(맥업데이트)
hemg2 Oct 11, 2023
47db78c
feat: Model 생성
hemg2 Oct 11, 2023
e1c7547
feat: AddVC생성 구현
hemg2 Oct 11, 2023
9bf4b26
feat: 지도에 데이터 추가및 지도 갱신 진행
hemg2 Oct 11, 2023
82082b1
refactor: 마커 업데이트진행, 불필요 코드 삭제
hemg2 Oct 11, 2023
d388865
refactor: 마커추가 원클릭->더블클릭
hemg2 Oct 11, 2023
b8183f3
feat: delete구현
hemg2 Oct 11, 2023
93b5228
refactor: 불필요 코드제거
hemg2 Oct 11, 2023
a9615b3
feat: 수정 및 삭제 인덱스 수정 이슈 처리
hemg2 Oct 11, 2023
a10f587
feat: searchBar 생성
hemg2 Oct 11, 2023
8b9e051
feat: 현재위치 추가 및 이동
hemg2 Oct 11, 2023
a7c5778
refactor: 식당 이름 수정및 삭제 이슈 해결
hemg2 Oct 12, 2023
a7d2bd9
feat: Category설정
hemg2 Oct 13, 2023
754bd1b
feat: Entity생성
hemg2 Oct 13, 2023
9038edd
feat: 카카오 음식점 API 설정
hemg2 Oct 13, 2023
f864b40
feat: currentButton 생성
hemg2 Oct 13, 2023
9179d4c
refactor: 버튼액션, 파일이동
hemg2 Oct 13, 2023
52e3317
feat: 서버 통신 진행
hemg2 Oct 13, 2023
005773d
feat: ImageCustom Test
hemg2 Oct 14, 2023
40d20d1
feat: 서버 통신받아서 지도에 보여주기
hemg2 Oct 14, 2023
e511af8
refactor: custom생성시에 카테고리 이미지 추가
hemg2 Oct 14, 2023
aa774d6
refactor: 현 위치 변경
hemg2 Oct 14, 2023
9089cf4
refactor: UI무응답? 이슈 -> 내위치 circle 변경
hemg2 Oct 14, 2023
bc4f709
feat: 음식점 통신 버튼생성, mapView-> LocationManger 변경
hemg2 Oct 15, 2023
82af446
refactor: map이동시 음식점 업데이트 진행
hemg2 Oct 16, 2023
da5b131
refactor: listButton 생성, 나의 위치 생성
hemg2 Oct 16, 2023
4d10bde
feat: ListVC 생성만 진행
hemg2 Oct 16, 2023
20187c6
feat: ListVC,Cell 생성, 구현
hemg2 Oct 17, 2023
730efa8
feat: Model -> categoryName 추가
hemg2 Oct 17, 2023
b044bdb
feat: DataManager 생성 전달하기
hemg2 Oct 17, 2023
72c11a9
feat: 카테고리 "음식점" 지우기
hemg2 Oct 17, 2023
b446b50
refactor: getLocation -> 디코딩작업 분리
hemg2 Oct 18, 2023
9b0782e
refactor: DataManager -> LocationDataManager 네이밍변경
hemg2 Oct 18, 2023
fb1fb7b
reafactor: 서치바 위치 수정
hemg2 Oct 18, 2023
ceab9a9
refactor: DaumMap 추가
hemg2 Oct 19, 2023
1061e02
refactor: 네임스페이스 적용하여 카테고리선택 통신진행
hemg2 Oct 19, 2023
1959019
feat: cafe, convenienceStore, parking Button/network 진행
hemg2 Oct 19, 2023
fc2540e
Create README.md
hemg2 Oct 19, 2023
9c93967
refactor: ButtonAction 변경, @objc -> UIAction
hemg2 Oct 25, 2023
2d38df4
feat: mainView 생성
hemg2 Oct 30, 2023
b6dd92a
refactor: data변환 합치기
hemg2 Nov 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reafactor: 서치바 위치 수정
hemg2 committed Oct 18, 2023
commit fb1fb7bcc3bb85d4812afb4af7a3c91e1f5ac59d
2 changes: 1 addition & 1 deletion FoodMaps/Contorller/MainViewController.swift
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ final class MainViewController: UIViewController {
searchBar.delegate = self

NSLayoutConstraint.activate([
searchBar.topAnchor.constraint(equalTo: view.topAnchor, constant: 50),
searchBar.topAnchor.constraint(equalTo: view.topAnchor, constant: 80),
searchBar.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 4),
searchBar.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -4)
])