Skip to content

Instantly share code, notes, and snippets.

@SunnyShah407
Created December 22, 2016 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SunnyShah407/ce9ceaa2a9698a4b13d8f1a5c747b250 to your computer and use it in GitHub Desktop.
Save SunnyShah407/ce9ceaa2a9698a4b13d8f1a5c747b250 to your computer and use it in GitHub Desktop.
2F 2F 0A 2F 2F 20 20 44 65 74 61 69 6C 43 65 6C 6C 2E 68 0A 2F 2F 20 20 53 63 61 6E 6E 65 72 41 70 70 0A 2F 2F 0A 2F 2F 20 20 43 72 65 61 74 65 64 20 62 79 20 66 61 62 33 20 6F 6E 20 32 35 2F 30 31 2F 31 34 2E 0A 2F 2F 20 20 43 6F 70 79 72 69 67 68 74 20 28 63 29 20 32 30 31 34 20 46 6F 78 20 54 65 63 68 2E 20 41 6C 6C 20 72 69 67 68 74 73 20 72 65 73 65 72 76 65 64 2E 0A 2F 2F 0A 0A 23 69 6D 70 6F 72 74 20 3C 55 49 4B 69 74 2F 55 49 4B 69 74 2E 68 3E 0A 0A 40 69 6E 74 65 72 66 61 63 65 20 44 65 74 61 69 6C 43 65 6C 6C 20 3A 20 55 49 54 61 62 6C 65 56 69 65 77 43 65 6C 6C 0A 40 70 72 6F 70 65 72 74 79 20 28 77 65 61 6B 2C 20 6E 6F 6E 61 74 6F 6D 69 63 29 20 49 42 4F 75 74 6C 65 74 20 55 49 49 6D 61 67 65 56 69 65 77 20 2A 69 6D 67 56 69 65 77 3B 0A 40 70 72 6F 70 65 72 74 79 20 28 77 65 61 6B 2C 20 6E 6F 6E 61 74 6F 6D 69 63 29 20 49 42 4F 75 74 6C 65 74 20 55 49 4C 61 62 65 6C 20 2A 6C 62 6C 53 69 7A 65 3B 0A 40 70 72 6F 70 65 72 74 79 20 28 77 65 61 6B 2C 20 6E 6F 6E 61 74 6F 6D 69 63 29 20 49 42 4F 75 74 6C 65 74 20 55 49 4C 61 62 65 6C 20 2A 6C 62 6C 4E 75 6D 62 65 72 3B 0A 40 70 72 6F 70 65 72 74 79 20 28 77 65 61 6B 2C 20 6E 6F 6E 61 74 6F 6D 69 63 29 20 49 42 4F 75 74 6C 65 74 20 55 49 42 75 74 74 6F 6E 20 2A 62 74 6E 43 6F 75 6E 74 3B 0A 0A 40 65 6E 64 0A
@robertmryan
Copy link

That is valid utf8, translating to

//
//  DetailCell.h
//  ScannerApp
//
//  Created by fab3 on 25/01/14.
//  Copyright (c) 2014 Fox Tech. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface DetailCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *imgView;
@property (weak, nonatomic) IBOutlet UILabel *lblSize;
@property (weak, nonatomic) IBOutlet UILabel *lblNumber;
@property (weak, nonatomic) IBOutlet UIButton *btnCount;

@end

The problem rests elsewhere.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment