отправить NSMutableAttributedString на сервер

Есть ли какой-нибудь способ сохранить строку nsmutablest на стороне сервера.
Я сделал ниже кодирования.

NSData *data = [NSKeyedArchiver archivedDataWithRootObject: attributedString];NSString *Str=[NSString stringWithFormat:@"http://ahd.medma.tv/suman/testv/testformat.php?mystring=%@",data];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:Str]
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:10];
[request setHTTPMethod: @"GET"];

NSError *requestError;
NSURLResponse *urlResponse = nil;

NSData *response1 = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];

NSString* newStr = [[NSString alloc] initWithData:response1 encoding:NSUTF8StringEncoding];

NSLog(@"responses===>%@",newStr);

Но тогда как преобразовать nsdata в атрибутный текст в бэкэнд-сторону в PHP?

пожалуйста, помогите мне

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]