用其他类型重新定义变量名

用其他类型重新定义变量名

This question already has answers here:
Redefinition with a different type

(3个答案)


6年前关闭。




我正在尝试向我的应用发送推送通知,在这里,通过下面的代码,我试图获取设备 token ,但出现编译器错误:



这是我的代码。
    NSString *deviceToken = [[[[deviceToken description]
stringByReplacingOccurrencesOfString:@"<"withString:@""]
stringByReplacingOccurrencesOfString:@">" withString:@""]
stringByReplacingOccurrencesOfString: @" " withString: @""];

最佳答案

使用此代码,您可以获得deviceToken

NSString *deviceTokenId = [[[deviceToken description]
                  stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]]
                 stringByReplacingOccurrencesOfString:@" "
                 withString:@""];

关于objective-c - 用其他类型重新定义变量名,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26030726/

10-13 02:37