すべての画像を Xcode のフォルダーに保存し、フォルダー内の名前に従って SQLite のすべてのリンクに名前を付けます。画像を保存するために SQLite で BLOB を使用しています。SQLite から必要な画像を UIImage に表示するにはどうすればよいですか? TableView から文字名を押して表示することを想定しており、ViewController に移動して画像を表示します。
これは AppDelegate.m ファイルです。
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Setup some globals
databaseName = @"Database.sql";
// Get the path to the documents directory and append the databaseName
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
databasePath = [documentsDir stringByAppendingPathComponent:databaseName];
// Execute the "checkAndCreateDatabase" function
[self checkAndCreateDatabase];
// Query the database for all records and construct the array
[self readCharactersFromDatabase];
[self readChaptersFromDatabase];
[self readThemesFromDatabase];
//[self readPlotsFromDatabase];
// Configure and show the window
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
}
-(void) readCharactersFromDatabase {
// Setup the database object
sqlite3 *database;
// Init the Array
chars = [[NSMutableArray alloc] init];
// Open the database from the users filessytem
if(sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK) {
// Setup the SQL Statement and compile it for faster access
const char *sqlStatement = "select * from Character";
sqlite3_stmt *compiledStatement;
if(sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK) {
// Loop through the results and add them to the feeds array
while(sqlite3_step(compiledStatement) == SQLITE_ROW) {
// Read the data from the result row
NSString *aName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 1)];
NSString *aDescription = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 2)];
UIImage *aImage = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 3)];
// Create a new object with the data from the database
Character *characters = [[Character alloc] initWithName:aName description:aDescription image:aImage];
// Add the object to the Array
[chars addObject:characters];
//[characters release];
}
}
// Release the compiled statement from memory
sqlite3_finalize(compiledStatement);
}
sqlite3_close(database);
}
@end
これは TableViewController.m ファイルです。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [appDelegate.chaps count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Set up the cell
Chapter *chapters = (Chapter *)[appDelegate.chaps objectAtIndex:indexPath.row];
cell.textLabel.text = chapters.name;
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic -- create and push a new view controller
Chapter *chapters = [appDelegate.chaps objectAtIndex:indexPath.row];
if(chapView == nil)
chapView = [self.storyboard instantiateViewControllerWithIdentifier:@"chapter"];
// self.charView = viewController;
chapView.chapters = chapters;
chapView.chapDes = chapters.description;
[self.navigationController presentModalViewController:chapView animated:YES];
// [charView release];
}
- (void)viewDidLoad {
[super viewDidLoad];
// Uncomment the following line to add the Edit button to the navigation bar.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
self.title = @"Chapter Analysis";
}
-(IBAction)backbutton {
ViewController *mainPage = [self.storyboard instantiateViewControllerWithIdentifier:@"mainPage"];
[self.navigationController presentModalViewController:mainPage animated:YES];
}
@end
これが ViewController.m ファイルです。
// Implement viewDidLoad to do additional setup after loading the view.
- (void)viewDidLoad {
// self.title = characters.name;
charImage.image = charI;
charDescription.text = charDes;
[super viewDidLoad];
}
-(IBAction)backbutton {
CharacterTableViewController *characterTable = [self.storyboard instantiateViewControllerWithIdentifier:@"characterTable"];
[self.navigationController presentModalViewController:characterTable animated:YES];
}
@end
エラーがどこにあるのか、なぜ何も表示できないのかわかりません。
編集
画像を SQLite に格納するための変数をテキストに変更し、画像名を入力するだけです。Xcodeには、必要なすべての画像を含む画像フォルダーがあり、画像の名前はデータベースに保存したものと同じです。このコード行を使用して、データベースから画像名を取得し、UIImage に表示しました。
charView.image = [UIImage imageNamed:characters.image];