Re: UITableViewController

2017-06-28 Thread Quincey Morris
On Jun 28, 2017, at 22:02 , Gerriet M. Denkmann wrote: > > I had to do two more steps: > > 1. give the segue an identifier, like: “EmbedSegueToTableViewController” > > 2. in the UITableViewController which formerly did have a UITableView and now > has the container view:

Re: UITableViewController

2017-06-28 Thread Gerriet M. Denkmann
> On 29 Jun 2017, at 00:48, Quincey Morris > wrote: > > On Jun 28, 2017, at 01:38 , Gerriet M. Denkmann wrote: >> >> I did just that. > > Not quite … > >> I have a Master View Controller Scene with a MasterViewController ← >>

Re: file encription/decriptoin iOS

2017-06-28 Thread Jens Alfke
> On Jun 28, 2017, at 8:04 PM, Dave Fernandes > wrote: > > So everything is protected by the iCloud Drive service key, but what does > “which is then stored with the user’s iCloud account” mean? Is it stored on > the device or in iCloud? That makes all the

Re: file encription/decriptoin iOS

2017-06-28 Thread Dave Fernandes
> On Jun 28, 2017, at 12:17 PM, Jens Alfke wrote: > > >> On Jun 28, 2017, at 6:33 AM, Sandor Szatmari >> wrote: >> >> I thought there were both local and iCloud Notes, no? > > Not sure what you’re asking, but: Anything saved to iCloud goes

Re: UITableViewController

2017-06-28 Thread Quincey Morris
On Jun 28, 2017, at 01:38 , Gerriet M. Denkmann wrote: > > I did just that. Not quite … > I have a Master View Controller Scene with a MasterViewController ← > UIViewController (which previously had a TableView, now has a UIView, called > “Container View” ); it now also

Re: file encription/decriptoin iOS

2017-06-28 Thread Jens Alfke
> On Jun 28, 2017, at 6:33 AM, Sandor Szatmari > wrote: > > I thought there were both local and iCloud Notes, no? Not sure what you’re asking, but: Anything saved to iCloud goes through end-to-end encryption, so there’s no way to read it on the iCloud servers

Re: file encription/decriptoin iOS

2017-06-28 Thread Sandor Szatmari
I thought there were both local and iCloud Notes, no? Sandor > On Jun 28, 2017, at 09:14, Jean-Daniel wrote: > > >> Le 27 juin 2017 à 04:25, Sandor Szatmari a >> écrit : >> >> This is an interesting thread. The OP's original question

Re: file encription/decriptoin iOS

2017-06-28 Thread Jean-Daniel
> Le 27 juin 2017 à 04:25, Sandor Szatmari a > écrit : > > This is an interesting thread. The OP's original question made me think of > the functionality Apple recently (how recently I'm not sure) added to the iOS > Notes app. It allows you to selectively

Re: Is cloning the same as copying in APFS?

2017-06-28 Thread Rick Mann
Yeah, our data is immutable, so hard Link’s work fine. -- Rick Mann rm...@latencyzero.com > On Jun 28, 2017, at 02:43, Alastair Houghton > wrote: > >> On 27 Jun 2017, at 22:45, Rick Mann wrote: >> >> Agreed. Thanks for the code, and for

Re: Is cloning the same as copying in APFS?

2017-06-28 Thread Alastair Houghton
On 27 Jun 2017, at 22:45, Rick Mann wrote: > > Agreed. Thanks for the code, and for showing the other techniques. In my > case, I still have to support HFS+, and I want to do that with hard links. I > wish there was an API to clone-or-hardlink, but I can do that.

Re: UITableViewController

2017-06-28 Thread Gerriet M. Denkmann
> On 28 Jun 2017, at 14:37, Quincey Morris > wrote: > > On Jun 28, 2017, at 00:21 , Gerriet M. Denkmann wrote: >> >> Ok, so I removed my TableView from the scene and tried to drag a >> UITableViewController into its place. >> But

Re: UITableViewController

2017-06-28 Thread Quincey Morris
On Jun 28, 2017, at 00:21 , Gerriet M. Denkmann wrote: > > Ok, so I removed my TableView from the scene and tried to drag a > UITableViewController into its place. > But Xcode would not allow this. > > So: must a UITableViewController the only (or the top) thing in a

UITableViewController

2017-06-28 Thread Gerriet M. Denkmann
I have (iOS 10.3) a UIViewController which contains: Other Stuff UITableView Now I want to add a UIRefreshControl to my TableView. The documentation says: that UIRefreshControl “is specifically designed for use in a table view that’s managed by a table view controller, using it in a different