ManualView
-
Welcome to YapDatabase!
https://github.com/yapstudios/YapDatabase
The project wiki has a wealth of documentation if you have any questions. https://github.com/yapstudios/YapDatabase/wiki
YapDatabaseView is an extension designed to work with YapDatabase. It gives you a persistent sorted
view
of a configurable subset of your data.For the full documentation on Views, please see the related wiki article: https://github.com/yapstudios/YapDatabase/wiki/Views
See moreDeclaration
Objective-C
@interface YapDatabaseManualView : YapDatabaseView
Swift
class YapDatabaseManualView : YapDatabaseView
-
Welcome to YapDatabase!
https://github.com/yapstudios/YapDatabase
The project wiki has a wealth of documentation if you have any questions. https://github.com/yapstudios/YapDatabase/wiki
YapDatabaseManualView is an extension designed to work with YapDatabase. It gives you a persistent sorted
view
of a configurable subset of your data.For the full documentation on Views, please see the related wiki article: https://github.com/yapstudios/YapDatabase/wiki/Views
As an extension, YapDatabaseManualViewConnection is automatically created by YapDatabaseConnnection. You can access this object via:
[databaseConnection extension:@
myRegisteredViewName
]See
YapDatabaseManualViewSee
YapDatabaseManualViewTransactionDeclaration
Objective-C
@interface YapDatabaseManualViewConnection : YapDatabaseViewConnection
Swift
class YapDatabaseManualViewConnection : YapDatabaseViewConnection
-
Welcome to YapDatabase!
The project page has a wealth of documentation if you have any questions. https://github.com/yapstudios/YapDatabase
If you’re new to the project you may want to check out the wiki https://github.com/yapstudios/YapDatabase/wiki
YapDatabaseView is an extension designed to work with YapDatabase. It gives you a persistent sorted
view
of a configurable subset of your data.For more information, please see the wiki article about Views: https://github.com/yapstudios/YapDatabase/wiki/Views
You access this class within a regular transaction. For example:
[databaseConnection readWithBlock:^(YapDatabaseReadTransaction *transaction){
topUsaSale = [[transaction ext:@"myView"] objectAtIndex:0 inGroup:@"usa"]
}];
Keep in mind that the YapDatabaseViewTransaction object is linked to the YapDatabaseReadTransaction object. So don’t try to use it outside the transaction block (cause it won’t work).
See moreDeclaration
Objective-C
@interface YapDatabaseManualViewTransaction : YapDatabaseViewTransaction
Swift
class YapDatabaseManualViewTransaction : YapDatabaseViewTransaction