Re: Cannot include Carbon on Mojave
> On May 15, 2019, at 8:07 AM, Glenn L. Austin wrote: > > Actually, the screw ups are on those software developers who write their code > based upon SDK behavior, not documentation. Yes, Apple sometimes makes > mistakes, but more often the "mistake" is that Apple fixed a bug (isn't that > what an "unintended side-effect" is?) that a software developer depended upon > to "save time" or "do something clever." Audio software seems more prone to OS compatibility issues than regular stuff. I think that’s because it’s dependent on a lot of tricky things like multithreading with real-time requirements (no dropouts!), USB drivers, etc. There’s also the way that Apple’s audio APIs (esp the lower level ones like AudioUnits) are very complex and under-documented. I’ve been building an audio app off and on since 2005(!) that I use myself. I’ve always wanted to release it commercially, but it’s never quite stable enough, and OS upgrades often seem to destabilize it. That said, I think Vojtek is speaking for a minority of audio users. There are certainly many musicians working with the latest versions of Ableton Live, Reaktor, Reason, etc. —Jens ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com
Moving cells in a UITableView
iOS 12.2 I want to allow the user of my iPhone app to finger-reorder the rows in a UITableView. I set tableView.editing=YES, and I receive 2 callbacks for each row in the table: (1) -tableView:editingStyleForRowAtIndexPath: --> return UITableViewCellEditingStyleNone. (2) -tableView:canMoveRowAtIndexPath: --> return YES. (The table displays rows that are shifted to the right to allow for an editing icon (insert/delete), but as I am reordering rows, there's no icon displayed.) I cannot move the rows in the table. The callback -tableView:moveRowAtIndexPath:toIndexPath: does not get called. My code used to work pre-iOS 12. Am I using the wrong UITableViewCellEditingStyle? -Carl ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com
Re: Moving cells in a UITableView
On May 16, 2019, at 14:29 , Carl Hoefs wrote: > > iOS 12.2 > > I want to allow the user of my iPhone app to finger-reorder the rows in a > UITableView. > > I set tableView.editing=YES, and I receive 2 callbacks for each row in the > table: > > (1) -tableView:editingStyleForRowAtIndexPath: --> return > UITableViewCellEditingStyleNone. > (2) -tableView:canMoveRowAtIndexPath: --> return YES. > > (The table displays rows that are shifted to the right to allow for an > editing icon (insert/delete), but as I am reordering rows, there's no icon > displayed.) > > I cannot move the rows in the table. > The callback -tableView:moveRowAtIndexPath:toIndexPath: does not get called. > > My code used to work pre-iOS 12. Am I using the wrong > UITableViewCellEditingStyle? I think you need cell.showsReorderControl = YES; ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com
Re: Moving cells in a UITableView
The problem boils down to this: If a UITableView doesn't have inner-width autoresizing enabled, the table won't get the 'move row' ability. Q: How can I set this property on the UITableView programmatically? -Carl > On May 16, 2019, at 2:29 PM, Carl Hoefs > wrote: > > iOS 12.2 > > I want to allow the user of my iPhone app to finger-reorder the rows in a > UITableView. > > I set tableView.editing=YES, and I receive 2 callbacks for each row in the > table: > > (1) -tableView:editingStyleForRowAtIndexPath: --> return > UITableViewCellEditingStyleNone. > (2) -tableView:canMoveRowAtIndexPath: --> return YES. > > (The table displays rows that are shifted to the right to allow for an > editing icon (insert/delete), but as I am reordering rows, there's no icon > displayed.) > > I cannot move the rows in the table. > The callback -tableView:moveRowAtIndexPath:toIndexPath: does not get called. > > My code used to work pre-iOS 12. Am I using the wrong > UITableViewCellEditingStyle? > > -Carl > > ___ > > Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) > > Please do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > https://lists.apple.com/mailman/options/cocoa-dev/newslists%40autonomy.caltech.edu > > This email sent to newsli...@autonomy.caltech.edu ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com