사진 처럼 미리보기로 보면 버튼이 있는데 정작 코드에서 호출 하면 버튼만 없이 나오는데
버튼도 나오게 하려면 따로 설정을 해줘야 될까요??
LinkApi.shared.customLink(templateId: Int64(templateId), templateArgs:[“title”:“11.”, “description”:“11”) {(linkResult, error) in
if let error = error {
print(error)
}
else {
print(“customLink() success.”)
if let linkResult = linkResult {
UIApplication.shared.open(linkResult.url, options: [:], completionHandler: nil)
}
}
}