You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initially, the dotted border for the textLabeView was drawn inside the layoutSubViews method using the afterInitSetConstraint flag to ensure it was only set up initially.
Changes to the textLabelView properties triggered a direct call to updateDottedBorder when the style included a dotted line.
However, the drawing of the dotted border has now been moved into the draw(_:) method.
Subsequently, each property will now call setNeedsDisplay() to trigger redrawing.
최초 textLabeView 점선 테투리를 그려야 할때 layoutSubviews 내부에서 실시했음 (afterInitSetConstraint) 조건 변수를 활용해서 최초 설정만 그림
textLabelView 변수값들이 변결 될 때 스타일이 점선일 경우 updateDottedBorder를 직접 호출
하지만 draw 내부로 해당 점선 테두리를 그리는걸 옮기고
각 변수에서는 setNeedsDisplay()를 호출하도록 변경 예정
The text was updated successfully, but these errors were encountered:
Initially, the dotted border for the textLabeView was drawn inside the
layoutSubViews
method using theafterInitSetConstraint
flag to ensure it was only set up initially.Changes to the
textLabelView
properties triggered a direct call toupdateDottedBorder
when the style included a dotted line.However, the drawing of the dotted border has now been moved into the
draw(_:)
method.Subsequently, each property will now call
setNeedsDisplay()
to trigger redrawing.최초 textLabeView 점선 테투리를 그려야 할때 layoutSubviews 내부에서 실시했음 (afterInitSetConstraint) 조건 변수를 활용해서 최초 설정만 그림
textLabelView 변수값들이 변결 될 때 스타일이 점선일 경우 updateDottedBorder를 직접 호출
하지만 draw 내부로 해당 점선 테두리를 그리는걸 옮기고
각 변수에서는 setNeedsDisplay()를 호출하도록 변경 예정
The text was updated successfully, but these errors were encountered: