在Firebase Block外部使用Variable

时间:2018-04-18 16:06:00

标签: ios firebase block nsuinteger

大家好我为我的ios项目使用Firebase ... 在查询数据库时,我在使用Firebase块之外的变量值时遇到了很多麻烦。

例如,在这种情况下,我试图从此查询中获取数字值...

 FIRDatabaseReference *userDbRef = FIRDatabase.database.reference;
 [[[userDbRef child:RTDUSER] child:userID] observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) {

     NSUInteger totalCFU = [snapshot.value[RTDUSER_TOTALCFU] unsignedIntegerValue];

} withCancelBlock:nil];

我需要在块外获得的这个数值(在这个类的其他函数中)......

如何在firebase块之外使用TotalCFU变量?

2 个答案:

答案 0 :(得分:1)

您可以从块内部调用方法来处理值。

FIRDatabaseReference *userDbRef = FIRDatabase.database.reference;
 [[[userDbRef child:RTDUSER] child:userID] observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) {

    NSUInteger totalCFU = [snapshot.value[RTDUSER_TOTALCFU] unsignedIntegerValue];

    // Call a function to handle value
    [self doSomethingWithCFU: totalCFU];

} withCancelBlock:nil];

班上的其他地方:

(void)doSomethingWithCFU:(NSUInteger)totalCFU {
    // Do something with the value
}

答案 1 :(得分:1)

使用__block在外面使用您的变量。

FIRDatabaseReference *userDbRef = FIRDatabase.database.reference;
__block NSUInteger totalCF;
[[[userDbRef child:RTDUSER] child:userID] observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) {

     totalCFU = [snapshot.value[RTDUSER_TOTALCFU] unsignedIntegerValue];

} withCancelBlock:nil];