Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Stepanov committed Mar 8, 2012
1 parent 864aab2 commit b4bdbcb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions iphone/AppledocSettings.plist
Expand Up @@ -45,6 +45,7 @@
<string>Classes/TiBuffer.h</string>
<string>Classes/WebFont.h</string>
<string>Classes/Webcolor.h</string>
<string>Classes/TiRect.h</string>
<string>Classes/TiPoint.h</string>
<string>Classes/TiColor.h</string>
<string>Classes/Ti2DMatrix.h</string>
Expand Down
3 changes: 2 additions & 1 deletion iphone/Classes/TiProxy.h
Expand Up @@ -236,7 +236,8 @@ void DoProxyDelegateReadValuesWithKeysFromProxy(UIView<TiProxyDelegate> * target
-(id<NSFastEnumeration>)allKeys;

/**
Returns the order of properties on the proxy object.
Returns the properties must be set first, and in a specific order, on the proxy object.
Properties which are not in this list are set in an undefined order.
Should be overrided in the views where the order in which keys are applied matters.
@return The array of property keys.
Expand Down
2 changes: 1 addition & 1 deletion iphone/Classes/TiRootViewController.h
Expand Up @@ -72,7 +72,7 @@
*/
@property(nonatomic,readonly) UIInterfaceOrientation windowOrientation;

/**
/*
Tells the controller to hides and release the default image view.
@see defaultImageView
*/
Expand Down
12 changes: 6 additions & 6 deletions iphone/Classes/TiUtils.h
Expand Up @@ -455,20 +455,20 @@ typedef enum {
+(BOOL)isIPad;

/**
Whether or not the current OS version is equal or greather than 4.2.
@return _YES_ if the current OS version is equal or greather than 4.2, _NO_ otherwise.
Whether or not the current OS version is equal to or greater than 4.2.
@return _YES_ if the current OS version is equal to or greater than 4.2, _NO_ otherwise.
*/
+(BOOL)isIOS4_2OrGreater;

/**
Whether or not the current OS version is equal greather than 5.0.
@return _YES_ if the current OS version is equal greather than 5.0, _NO_ otherwise.
Whether or not the current OS version isequal to or greater than 5.0.
@return _YES_ if the current OS version is equal to or greater thann 5.0, _NO_ otherwise.
*/
+(BOOL)isIOS5OrGreater;

/**
Whether or not the current device is iPhone 4.
@return _YES_ if the current device is iPhone 4, _NO_ otherwise.
Whether or not the current device is an iPhone 4.
@return _YES_ if the current device is an iPhone 4, _NO_ otherwise.
*/
+(BOOL)isIPhone4;

Expand Down
2 changes: 1 addition & 1 deletion iphone/Classes/TiViewProxy.h
Expand Up @@ -509,7 +509,7 @@ enum
-(void)layoutChildren:(BOOL)optimize;

/**
Tells the view to layout its childrent only if there were any layout chnages.
Tells the view to layout its children only if there were any layout changes.
*/
-(void)layoutChildrenIfNeeded;

Expand Down

0 comments on commit b4bdbcb

Please sign in to comment.