Duke3d!

https://js-dos.com/Duke%20Nukem%203d/

Swift 4 – Array Contains Value

Easiest way: let’s say you have an array let check = c.sections.contains { $0.idaudits_sections == needle } // check returns true if a match is found. $0 is the iterator, through this abstract object it is possible to… Read More

Swift 4 – Add Action Menu to TableviewController

override func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? { let deleteAction = UITableViewRowAction(style: UITableViewRowActionStyle.default, title: “Löschen” , handler: { (action:UITableViewRowAction, indexPath: IndexPath) -> Void in let deleteMenu = UIAlertController(title: nil, message: “Wirklich Löschen?”, preferredStyle: .actionSheet) let… Read More