File tree 3 files changed +9
-9
lines changed
DragAndDropTableView.xcworkspace/xcshareddata
Examples/DragAndDropTableView
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "DragAndDropTableView"
3
- s . version = "0.1.8 "
3
+ s . version = "0.1.9 "
4
4
s . summary = "A UITableView where cells can be rearranged by drag and drop."
5
5
s . homepage = "https://github.com/grillbiff/DragAndDropTableView"
6
6
s . license = 'MIT'
7
7
s . author = { "Erik Johansson" => "[email protected] " }
8
- s . source = { :git => "https://github.com/grillbiff/DragAndDropTableView.git" , :tag => "0.1.8 " }
8
+ s . source = { :git => "https://github.com/grillbiff/DragAndDropTableView.git" , :tag => "0.1.9 " }
9
9
s . platform = :ios , '5.0'
10
10
s . source_files = 'DragAndDropTableView'
11
11
s . framework = 'QuartzCore'
Original file line number Diff line number Diff line change 10
10
<string >DragAndDropTableView</string >
11
11
<key >IDESourceControlProjectOriginsDictionary</key >
12
12
<dict >
13
- <key >862AF4A7-0360-4EBF-9077-E9DC51B6D430 </key >
13
+ <key >E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156 </key >
14
14
<string >https://github.com/grillbiff/DragAndDropTableView.git</string >
15
15
</dict >
16
16
<key >IDESourceControlProjectPath</key >
17
17
<string >DragAndDropTableView.xcworkspace</string >
18
18
<key >IDESourceControlProjectRelativeInstallPathDictionary</key >
19
19
<dict >
20
- <key >862AF4A7-0360-4EBF-9077-E9DC51B6D430 </key >
20
+ <key >E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156 </key >
21
21
<string >..</string >
22
22
</dict >
23
23
<key >IDESourceControlProjectURL</key >
24
24
<string >https://github.com/grillbiff/DragAndDropTableView.git</string >
25
25
<key >IDESourceControlProjectVersion</key >
26
- <integer >110 </integer >
26
+ <integer >111 </integer >
27
27
<key >IDESourceControlProjectWCCIdentifier</key >
28
- <string >862AF4A7-0360-4EBF-9077-E9DC51B6D430 </string >
28
+ <string >E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156 </string >
29
29
<key >IDESourceControlProjectWCConfigurations</key >
30
30
<array >
31
31
<dict >
32
32
<key >IDESourceControlRepositoryExtensionIdentifierKey</key >
33
33
<string >public.vcs.git</string >
34
34
<key >IDESourceControlWCCIdentifierKey</key >
35
- <string >862AF4A7-0360-4EBF-9077-E9DC51B6D430 </string >
35
+ <string >E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156 </string >
36
36
<key >IDESourceControlWCCName</key >
37
37
<string >DragAndDropTableView</string >
38
38
</dict >
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ - (void)didReceiveMemoryWarning
50
50
51
51
#pragma mark UITableViewDataSource
52
52
53
- -(int )numberOfSectionsInTableView : (UITableView *)tableView
53
+ -(NSInteger )numberOfSectionsInTableView : (UITableView *)tableView
54
54
{
55
55
return _datasource.count ;
56
56
}
57
57
58
- -(int )tableView : (UITableView *)tableView numberOfRowsInSection : (NSInteger )section
58
+ -(NSInteger )tableView : (UITableView *)tableView numberOfRowsInSection : (NSInteger )section
59
59
{
60
60
return [[_datasource objectAtIndex: section] count ];
61
61
}
You can’t perform that action at this time.
0 commit comments