如何将值从NSString转换为NSInteger

时间:2011-12-12 18:12:13

标签: iphone nsstring nsinteger

我是iPhone开发的新手。

我想使用下面提到的过程从数据库中获取记录。

但是当我将搜索到的searchDbAuthorId1 or searchDbQuoteId值传递给某个方法时,它显示了BAD ACCESS条消息。

if(sqlite3_open([self.databasePath UTF8String], &database) == SQLITE_OK) 
    {
        NSString *querySQL = [NSString stringWithFormat:@"select distinct(qot.id), key.Authorid,  key.Keyword, qot.Quotes from Keywords key inner JOIN Quotes qot on key.Authorid=qot.AuthorID where key.Keyword like \'%@\'",dataSearch];
        sqlite3_stmt *compiledStatement;
        const char *query_stmt = [querySQL UTF8String];
        if(sqlite3_prepare_v2(database, query_stmt, -1, &compiledStatement, NULL) == SQLITE_OK)
        {
            while (sqlite3_step(compiledStatement)==SQLITE_ROW)
            {
                NSString *searchDbAuthorId1 =  [[NSString alloc] initWithUTF8String:(const char *) sqlite3_column_text(compiledStatement, 1)];
                NSString *searchDbQuoteId1 =  [[NSString alloc]initWithUTF8String:(const char *) sqlite3_column_text(compiledStatement, 0)];
                NSString *searchDbKeyword1 =  [[NSString alloc] initWithUTF8String:(const char *) sqlite3_column_text(compiledStatement, 2)];
                NSString *searchDbQuote1 =  [[NSString alloc] initWithUTF8String:(const char *) sqlite3_column_text(compiledStatement, 3)];

                terms *Objterm = [[terms alloc] init];
                Objterm->searchDbQuoteId = searchDbQuoteId1;
                Objterm->searchDbAuthorId = searchDbAuthorId1; 
                Objterm->searchDbKeyword = searchDbKeyword1;
                Objterm->searchDbQuote = searchDbQuote1;

                NSLog(@"searchDbQuoteId = %@",Objterm->searchDbQuoteId);
                NSLog(@"searchDbAuthorId = %@",Objterm->searchDbAuthorId);
                NSLog(@"searchDbKeyword= %@",Objterm->searchDbKeyword);
                NSLog(@"searchDbQuote= %@",Objterm->searchDbQuote);

                NSLog(@"searchDbQuoteId = %d",Objterm->searchDbQuoteId);
                NSLog(@"searchDbAuthorId = %d",Objterm->searchDbAuthorId);

我使用NSLOG来了解实际值。

以下是%@

的值

这些是我需要的正确值

2011-12-12 23:03:50.612 Quotes[1039:207] searchDbQuoteId = 15
2011-12-12 23:03:50.988 Quotes[1039:207] searchDbAuthorId = 6

以及%d

的值

我正在获取这些值

2011-12-12 23:03:52.332 Quotes[1039:207] searchDbQuoteId = 109590272
2011-12-12 23:03:53.580 Quotes[1039:207] searchDbAuthorId = 109607456

提前致谢。

2 个答案:

答案 0 :(得分:4)

您的问题对我来说没有意义,我们需要更多信息,但我发现您已经找到了问题。所以,回答你的标题:

  

如何将值从Nsstring转换为NSinteger

您可以使用NSString的-integerValue方法。

NSInteger integer = [string integerValue];

答案 1 :(得分:2)

NSInteger myInt = [myString intValue];是您问题标题的答案。然而,问题内容不是很清楚,我不确定你在问什么。