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

[#28] MainNavigationBarView #30

Merged
merged 4 commits into from
Jul 4, 2021

Conversation

ezidayzi
Copy link
Contributor

@ezidayzi ezidayzi commented Jul 4, 2021

Description

import UIKit

import SnapKit

class ViewController: UIViewController {
    
    lazy var topBar = MainNavigationBarView(type: .rainbow)
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        view.addSubview(topBar)
        
        topBar.snp.makeConstraints {
            $0.top.equalTo(view.safeAreaLayoutGuide.snp.top)
            $0.leading.trailing.equalToSuperview()
            $0.height.equalTo(topBarHeight)
        }
        
        topBar.setBookTitleLabel(text: "모여봐용 키키키킼키키")
    }

}

Related Issues

#28

Closes #28

@ezidayzi ezidayzi added feat 새로운 기능 추가 (new feature) dayzi labels Jul 4, 2021
@ezidayzi ezidayzi self-assigned this Jul 4, 2021
Copy link
Contributor

@jeongyeob97 jeongyeob97 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

@jeongyeob97 jeongyeob97 changed the title #28 MainNavigationBarView [#28] MainNavigationBarView Jul 4, 2021
Copy link
Contributor

@ehdustj1001 ehdustj1001 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

@jeongyeob97 jeongyeob97 merged commit d75bc97 into TeamMascota:develop Jul 4, 2021
@ezidayzi
Copy link
Contributor Author

ezidayzi commented Jul 4, 2021

ㅁㅊㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ

@ezidayzi ezidayzi deleted the #28_feat_topBarView branch July 4, 2021 12:04
@ezidayzi ezidayzi added this to In progress in Mascota-iOS via automation Jul 6, 2021
@ezidayzi ezidayzi moved this from In progress to Done in Mascota-iOS Jul 6, 2021
@ezidayzi ezidayzi removed this from Done in Mascota-iOS Jul 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dayzi feat 새로운 기능 추가 (new feature)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat] BaseViewController에서 UIView Custom Class로 변경
3 participants