Post

Replies

Boosts

Views

Activity

Comment on How can I handle NavigationLink for HStack row
here, I recommend you read question carefully. ` VStack{   NavigationLink(destination: ChatDetailView(), isActive: $profileData.show) { HStack{ VStack(alignment: .leading, spacing: 8, content: { Text(recent.userName) .fontWeight(.bold) Text(recent.lastMsg) .font(.caption) .foregroundColor(.gray) }) Spacer(minLength: 10) Text(recent.time) .font(.caption2) .foregroundColor(.gray) } Divider() } } }
Jun ’21
Comment on why it says "this class is not key value coding-compliant for the key forgotPassword.'?"
tnx much for ur answer, I have storyboard and in my storyboard I have forget password label, I want to click the this label and open "ForgotPasswordEmailCheckController". ForgotPasswordEmailCheckController is a view write programmatic , I did'nt use storyboard for ForgotPasswordEmailCheckController. How can I connect to ForgotPasswordEmailCheckController? Any suggestion ? :)
Jul ’21
Comment on why it says "this class is not key value coding-compliant for the key forgotPassword.'?"
I want to use like that function  func showAppDetailForApp(_ app: App) {     let layout = UICollectionViewFlowLayout()     let appDetailController = AppDetailController(collectionViewLayout: layout)     appDetailController.app = app     navigationController?.pushViewController(appDetailController, animated: true)   } but how can use for forget password label?
Jul ’21