Skip to content

Commit e6259a6

Browse files
committed
Fixed file reference, updated pod version
1 parent 7920a14 commit e6259a6

File tree

9 files changed

+160
-156
lines changed

9 files changed

+160
-156
lines changed

Example/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- MSAutoView (2.5.0)
2+
- MSAutoView (2.6.0)
33

44
DEPENDENCIES:
55
- MSAutoView (from `../`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99
:path: "../"
1010

1111
SPEC CHECKSUMS:
12-
MSAutoView: 08e23d9bc2aec9bf59ba248847b2df5db4644b1f
12+
MSAutoView: 949eb469f8b8bdc50499f0530e24725e74c1720c
1313

1414
PODFILE CHECKSUM: 706747bd031deee93b9c3b1183d1ca2b073305ba
1515

Example/Pods/Local Podspecs/MSAutoView.podspec.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

+150-146
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/xcuserdata/mahersantina.xcuserdatad/xcschemes/MSAutoView.xcscheme

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/MSAutoView/Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MSAutoView.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'MSAutoView'
11-
s.version = '2.5.0'
11+
s.version = '2.6.0'
1212
s.summary = 'An easy way to create reusable xibs.'
1313
s.swift_version = '3.2'
1414

MSAutoView/.DS_Store

0 Bytes
Binary file not shown.

MSScrollView.swift MSAutoView/Classes/MSScrollView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import UIKit
1010
open class MSScrollView<T: UIView>: UIScrollView {
1111
public var mainView: T?
1212

13-
func initView(mainView: T) {
13+
public func initView(mainView: T) {
1414
self.mainView?.removeFromSuperview()
1515
addSubviewWithConstraints(mainView)
1616
let constraint = NSLayoutConstraint(item: mainView, attribute: .centerX, relatedBy: .equal, toItem: self, attribute: .centerX, multiplier: 1, constant: 0)

0 commit comments

Comments
 (0)