@@ -148,7 +148,11 @@ extension MyPageVC {
148148 $0. image = ImageLiterals . icArrowRight
149149 }
150150
151- containerView. addSubviews ( icStar, label, icArrowRight)
151+ containerView. addSubviews (
152+ icStar,
153+ label,
154+ icArrowRight
155+ )
152156
153157 icStar. snp. makeConstraints {
154158 $0. top. equalToSuperview ( ) . offset ( 22 )
@@ -297,9 +301,20 @@ extension MyPageVC {
297301 return
298302 }
299303
300- view. addSubviews ( myProfileView, myRunningProgressView, firstDivideView,
301- activityRecordInfoView, secondDivideView, goalRewardInfoView,
302- thirdDivideView, uploadedCourseInfoView, fourthDivideView, settingView, fifthDivideView, kakaoChannelAsk)
304+ view. addSubviews (
305+ myProfileView,
306+ myRunningProgressView,
307+ firstDivideView,
308+ activityRecordInfoView,
309+ secondDivideView,
310+ goalRewardInfoView,
311+ thirdDivideView,
312+ uploadedCourseInfoView,
313+ fourthDivideView,
314+ settingView,
315+ fifthDivideView,
316+ kakaoChannelAsk
317+ )
303318
304319 myProfileView. snp. makeConstraints {
305320 $0. top. equalTo ( navibar. snp. bottom) . offset ( 6 )
@@ -315,7 +330,11 @@ extension MyPageVC {
315330 }
316331
317332 private func setMyProfileLayout( ) {
318- myProfileView. addSubviews ( myProfileImage, myProfileNameLabel, myProfileEditButton)
333+ myProfileView. addSubviews (
334+ myProfileImage,
335+ myProfileNameLabel,
336+ myProfileEditButton
337+ )
319338
320339 myProfileImage. snp. makeConstraints {
321340 $0. top. equalToSuperview ( ) . offset ( 11 )
@@ -344,8 +363,11 @@ extension MyPageVC {
344363 }
345364
346365 private func setRunningProgressLayout( ) {
347- myRunningProgressView. addSubviews ( myRunningLevelLabel, myRunningProgressBar,
348- myRunnigProgressPercentLabel)
366+ myRunningProgressView. addSubviews (
367+ myRunningLevelLabel,
368+ myRunningProgressBar,
369+ myRunnigProgressPercentLabel
370+ )
349371
350372 myRunningLevelLabel. snp. makeConstraints {
351373 $0. top. equalToSuperview ( ) . offset ( 20 )
@@ -422,7 +444,11 @@ extension MyPageVC {
422444 }
423445
424446 private func setVersionInfoLayout( ) {
425- view. addSubviews ( topVersionDivideView, versionInfoView, bottomVersionDivideView)
447+ view. addSubviews (
448+ topVersionDivideView,
449+ versionInfoView,
450+ bottomVersionDivideView
451+ )
426452
427453 topVersionDivideView. snp. makeConstraints {
428454 $0. top. equalTo ( kakaoChannelAsk. snp. bottom)
@@ -442,7 +468,10 @@ extension MyPageVC {
442468 $0. height. equalTo ( 4 )
443469 }
444470
445- versionInfoView. addSubviews ( versionInfoLabel, versionInfoValueLabel)
471+ versionInfoView. addSubviews (
472+ versionInfoLabel,
473+ versionInfoValueLabel
474+ )
446475
447476 versionInfoLabel. snp. makeConstraints {
448477 $0. centerY. equalToSuperview ( )
0 commit comments