!!! EARLY DEVELOPMENT STAGE !!!
FFXIV-Lodestone for iOS
- Search Characters
- Find Characters By Id
- Retrieve a Linkshell from Lodestone
- Retrieve a Free Company from Lodestone
Searching
[[FFLodestone sharedInstance] searchCharacterWithName:@"Hackfrag" worldName:nil classjob:nil completionHandler:^(NSArray *characters, NSError *error) {
NSLog(@"%@", characters);
}];Fetching
[[FFLodestone sharedInstance] fetchCharacterWithId:@"1674571" completionHandler:^(FFCharacter *character, NSError *error) {
NSLog(@"%@", character);
}];