customCalloutBalloonView 사용법의 자세한 가이드 부탁드립니다

let cumView = UIView()
cumView.frame = CGRect(x:300, y:300, width:( 64 / 375 ) * screenWidth , height: ( 77 / 667) * screenHeight )
poiItem.customCalloutBalloonView = cumView

let lbl = UILabel()
lbl.text = “sss”
cumView.addSubview(lbl)

이렇게 했는데 의도데로 sss가 표시되는 풍선을 보이려구 하는데요 어떤게 잘못 되었나요?