tinkl, is some of my experiences,hope that can help ios developers.
RemoteMessageListOperator uses ARC and requires iOS 7.0+.
It probably will work with iOS 6, I have not tried,but it is not using any iOS7 specific APIs.
just download zip file… > and you can use it .
if you have some Question to ask me, you can contact email [email protected] link.
or see blogs http://www.cnblogs.com/tinkl/p/3573454.html
Just see this:
-
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
-
[cell SendMessageRemoteImgOper:_objImgListOper WithMessage:dictionary type:messageType_text];
- (void) SendMessageRemoteImgOper:(RemoteImgListOperator *)objOper WithMessage:(NSMutableDictionary *) dict type:(int) type
{
NSString * guid = dict[@"MESSAGE_GUID"];
[self setRemoteImgOper:objOper withGUID:guid];
SLLog(@"SendMessageRemoteImgOper guid : %@",guid);
__block NSMutableDictionary *blockDict = [dict mutableCopy];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
dispatch_sync(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
dispatch_async(dispatch_get_main_queue(), ^{
if (_objRemoteImgListOper)
{
[_objRemoteImgListOper sendMessageGUID:guid ByDict:blockDict withProgress:nil];
}
});
});
});
}
- Gives Xcode's autocompletion to be able to filter like Open Quickly does2. Ordered
- Supports Xcode 5.0, 5.0.1, 5.0.2 and 5.1
- Supports Xcode's learning and context-aware priority system
- Uses Grand Central Dispatch to parallelise matching
- Productivity++
- Only tested with Xcode 5 on 10.8.5
- Hasn't been tested with other plugins
Setext-style:
Initial release