Again, it's still unclear what kind of assistance you're looking for. People here are happy to answer specific questions, but if you're having trouble getting started, it's not really practical for anyone to jump in and write code for you.Based on the shape of the screen in your image, it looks like this is an iPhone app, so you'd be using UITableView, not NSTableView (the Mac equivalent). With UITableView, there are no columns as such, only rows. To get an arrangement like your screen with the steppers, each row (cell) would have a cell view that uses autolayout to position the subelements — text label to the left, stepper and text file to the right. It'll look like columns, even though there aren't really any columns.Have you tried starting from an iOS master/detail template, which you can choose when creating a new project in Xcode? This should have a similar general structure to the kind of app you seem to be wanting, and you can customize your rows using that template as a starting poin
Topic:
Programming Languages
SubTopic:
Swift
Tags: