summaryrefslogtreecommitdiff
path: root/Juick/Message.m
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Message.m')
-rw-r--r--Juick/Message.m30
1 files changed, 30 insertions, 0 deletions
diff --git a/Juick/Message.m b/Juick/Message.m
new file mode 100644
index 0000000..e87834b
--- /dev/null
+++ b/Juick/Message.m
@@ -0,0 +1,30 @@
+//
+// Message.m
+// Juick
+//
+// Created by Vitaly Takmazov on 29.10.13.
+// Copyright (c) 2013 com.juick. All rights reserved.
+//
+
+#import "Message.h"
+
+@implementation Message
+
+-(id)initWithDictionary:(NSDictionary *)dictionary
+{
+ Message *result = [[Message alloc] init];
+ result.MID = [dictionary objectForKey:@"mid"];
+ result.RID = [dictionary objectForKey:@"rid"];
+ NSString *text = [[dictionary objectForKey:@"body"] stringByDecodingHTMLEntities];
+ NSDictionary *userDict = [dictionary objectForKey:@"user"];
+ result.user = [userDict objectForKey:@"uname"];
+ NSArray *tagsArray = [dictionary objectForKey:@"tags"];
+ if ([tagsArray count] > 0) {
+ result.text = [[NSString alloc] initWithFormat:@"%@\n%@", [tagsArray componentsJoinedByString:@", "], text];
+ } else {
+ result.text = text;
+ }
+ return result;
+}
+
+@end