Skip to content

Commit 1824f24

Browse files
author
Erik Johansson
committed
updated example and podspec
1 parent 9c6c8ba commit 1824f24

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

DragAndDropTableView.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = "DragAndDropTableView"
3-
s.version = "0.1.8"
3+
s.version = "0.1.9"
44
s.summary = "A UITableView where cells can be rearranged by drag and drop."
55
s.homepage = "https://github.com/grillbiff/DragAndDropTableView"
66
s.license = 'MIT'
77
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" }
99
s.platform = :ios, '5.0'
1010
s.source_files = 'DragAndDropTableView'
1111
s.framework = 'QuartzCore'

DragAndDropTableView.xcworkspace/xcshareddata/DragAndDropTableView.xccheckout

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@
1010
<string>DragAndDropTableView</string>
1111
<key>IDESourceControlProjectOriginsDictionary</key>
1212
<dict>
13-
<key>862AF4A7-0360-4EBF-9077-E9DC51B6D430</key>
13+
<key>E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156</key>
1414
<string>https://github.com/grillbiff/DragAndDropTableView.git</string>
1515
</dict>
1616
<key>IDESourceControlProjectPath</key>
1717
<string>DragAndDropTableView.xcworkspace</string>
1818
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
1919
<dict>
20-
<key>862AF4A7-0360-4EBF-9077-E9DC51B6D430</key>
20+
<key>E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156</key>
2121
<string>..</string>
2222
</dict>
2323
<key>IDESourceControlProjectURL</key>
2424
<string>https://github.com/grillbiff/DragAndDropTableView.git</string>
2525
<key>IDESourceControlProjectVersion</key>
26-
<integer>110</integer>
26+
<integer>111</integer>
2727
<key>IDESourceControlProjectWCCIdentifier</key>
28-
<string>862AF4A7-0360-4EBF-9077-E9DC51B6D430</string>
28+
<string>E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156</string>
2929
<key>IDESourceControlProjectWCConfigurations</key>
3030
<array>
3131
<dict>
3232
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
3333
<string>public.vcs.git</string>
3434
<key>IDESourceControlWCCIdentifierKey</key>
35-
<string>862AF4A7-0360-4EBF-9077-E9DC51B6D430</string>
35+
<string>E1C2AE8E5D8FC6C38389099F4B36122BDCFA5156</string>
3636
<key>IDESourceControlWCCName</key>
3737
<string>DragAndDropTableView</string>
3838
</dict>

Examples/DragAndDropTableView/DNDViewController.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ - (void)didReceiveMemoryWarning
5050

5151
#pragma mark UITableViewDataSource
5252

53-
-(int)numberOfSectionsInTableView:(UITableView *)tableView
53+
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
5454
{
5555
return _datasource.count;
5656
}
5757

58-
-(int)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
58+
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
5959
{
6060
return [[_datasource objectAtIndex:section] count];
6161
}

0 commit comments

Comments
 (0)