Post

Replies

Boosts

Views

Activity

Reply to New App
Don't upset. You were asking for opinions, I gave mine. Hope you received it with gratitude. Wish you success. Even though I do not trust everything I could read on Facebook. Also hope for you that the review board will recognise they are evaluating a new Einstein… 🙂 And you are right: IGNORANCE is a BLESSING to the FOOLS but NOT those who WISH TO LEARN! Do you speak for yourself ? 😀
Dec ’20
Reply to Filter array by String
Is groupedArray a dictionary ? Arrays have no keys property. Could you show groupedArray content ? And also show the complete code. As you don't tell, I have to guess. Are you sure you want to filter on keys and not values ?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’20
Reply to Help adding multiple images to a UIImageView
Let me know how I solve or work around this issue Which precise issue ? The right way to use the forum is not to ask to review a full project to understand the problem… So please: explain exactly what you get Explain what you'd expect or what specific point you don't know how to do and show the relevant code. In addition, this is related to a third party library, you'd better contact them or their forum directly. May have a look here for tutorial: https ://www.iosapptemplates. com/blog/ios-development/tinder-card-swipe-swift-koloda
Topic: UI Frameworks SubTopic: UIKit Tags:
Dec ’20
Reply to UITableView in VC
Are they ALL the constraints you have defined ? 						addNoteTextField.topAnchor.constraint(equalTo: view.topAnchor, constant: padding), 						addNoteTextField.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: padding), 						addNoteTextField.widthAnchor.constraint(equalToConstant: 270), 						addNoteTextField.heightAnchor.constraint(equalToConstant: 50), 						 						addNoteButton.topAnchor.constraint(equalTo: view.topAnchor, constant: padding), 						addNoteButton.leadingAnchor.constraint(equalTo: addNoteTextField.trailingAnchor, constant: padding), 						addNoteButton.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: -padding), 						addNoteButton.heightAnchor.constraint(equalToConstant: 50), 				]) What do you get ? Does the tableView occupies all the screen height? Or just move some other views ? Please explain completely what you get, what you expect and what you did. And show the complete code. Did you set the delegate and dataSource for the TableView ?
Topic: UI Frameworks SubTopic: UIKit Tags:
Dec ’20