' Get a list of all notebooks in the user's account.
Dim myNotebookList As List(Of ENNotebook) = ENSession.SharedSession.ListNotebooks()
For Each item In myNotebookList
ListBox1.Items.Add(item)
Next
这一切都给了我以下一行的清单...... Evernote SDK ENNotebook
如何获取要在列表框中显示的笔记本的名称。 使用VS2013
答案 0 :(得分:1)
这里是Notebook对象的文档:https://dev.evernote.com/doc/reference/Types.html#Struct_Notebook
正如您所看到的,有一个名字'将为您提供笔记本名称的属性。
所以你的代码应该是这样的:
UIViewController