Compare commits

...

4 Commits

Author SHA1 Message Date
Yuan Zhu 4259a1cc92 Update pod spec version number. 2016-05-24 10:54:15 -07:00
Ben DiFrancesco 70d4532d0e Declare ORKScrollToTopAnimationDuration and ORKCGFloatInvalidValue as extern in ORKHelpers.h; fixes #679 2016-05-24 10:53:53 -07:00
Yuan Zhu 23900bed0e Merge pull request #663 from YuanZhu-apple/stable_class_visibility
Fix class visibility
2016-04-19 17:10:44 -07:00
Yuan Zhu 8c8a1adc47 Fix class visibility 2016-04-19 17:05:49 -07:00
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ResearchKit'
s.version = '1.3.0'
s.version = '1.3.1'
s.summary = 'ResearchKit is an open source software framework that makes it easy to create apps for medical research or for other research projects.'
s.homepage = 'https://www.github.com/ResearchKit/ResearchKit'
s.documentation_url = 'http://researchkit.github.io/docs/'
+2 -1
View File
@@ -29,7 +29,7 @@
*/
#import <ResearchKit/ORKAnswerFormat.h>
#import <ResearchKit/ResearchKit.h>
NS_ASSUME_NONNULL_BEGIN
@@ -40,6 +40,7 @@ NS_ASSUME_NONNULL_BEGIN
An `ORKConfirmTextAnswerFormat` object produces an `ORKBooleanQuestionResult` object.
*/
ORK_CLASS_AVAILABLE
@interface ORKConfirmTextAnswerFormat : ORKTextAnswerFormat
- (instancetype)init NS_UNAVAILABLE;
+2 -2
View File
@@ -269,7 +269,7 @@ id ORKDynamicCast_(id x, Class objClass);
#define ORKDynamicCast(x, c) ((c *) ORKDynamicCast_(x, [c class]))
const CGFloat ORKScrollToTopAnimationDuration;
extern const CGFloat ORKScrollToTopAnimationDuration;
ORK_INLINE CGFloat
ORKCGFloatNearlyEqualToFloat(CGFloat f1, CGFloat f2) {
@@ -285,7 +285,7 @@ void ORKValidateArrayForObjectsOfClass(NSArray *array, Class expectedObjectClass
void ORKRemoveConstraintsForRemovedViews(NSMutableArray *constraints, NSArray *removedViews);
const CGFloat ORKCGFloatInvalidValue;
extern const CGFloat ORKCGFloatInvalidValue;
void ORKAdjustPageViewControllerNavigationDirectionForRTL(UIPageViewControllerNavigationDirection *direction);
+1
View File
@@ -1253,6 +1253,7 @@ ORK_CLASS_AVAILABLE
/**
The `ORKLocation` class represents the location addess obtained from a locaton question.
*/
ORK_CLASS_AVAILABLE
@interface ORKLocation : NSObject <NSCopying, NSSecureCoding>
- (instancetype)init NS_UNAVAILABLE;