Skip to content

An Objective-C framework for connecting to SharePoint sites

License

Notifications You must be signed in to change notification settings

Zeophlite/SPConnector

 
 

Repository files navigation

Description

SPConnector is designed to bring SharePoint whilst remaining lightweight.

It does not handle network connections itself and is designed to be flexible around this.

More SharePoint operations to come in the near future.

Getting Started

  1. Copy the SPConnector folder into project
  2. Add /usr/include/libxml2 to 'Header Search Paths'
  3. Add -lxml2 to 'Other Linker Flags'

Example Usage

  1. Copy the RequestSubclasses/AFSPURLConnectionOperation files into project
NSURL *url = [NSURL URLWithString:@"http://sharepoint.example.com/"];
self.ctx = [[SPContext alloc] initWithSiteURL:url];
self.ctx.requestOperationClass = [AFSPURLConnectionOperation class];
[self.ctx setRequestSetupBlock:^(AFURLConnectionOperation *requestOperation) {
    // Called when a new request is allocated
}];

[self.ctx getListCollection:^(NSArray *lists) {
    for (SPList *list in lists) {
        NSLog(@"%@", list.title);
    }
}];

License

SPConnector is available under the MIT license. See the LICENSE file for more info.

About

An Objective-C framework for connecting to SharePoint sites

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%