You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ac...@apache.org on 2017/07/29 02:59:19 UTC

[05/11] incubator-weex git commit: * [ios] adjust code style @notdanger

* [ios] adjust code style @notdanger


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/cea16e22
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/cea16e22
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/cea16e22

Branch: refs/heads/0.16-dev
Commit: cea16e2288ac045c54e2e5c7c54ad0d887f8a654
Parents: 9d77622
Author: acton393 <zh...@gmail.com>
Authored: Fri Jul 28 16:59:19 2017 +0800
Committer: acton393 <zh...@gmail.com>
Committed: Fri Jul 28 16:59:19 2017 +0800

----------------------------------------------------------------------
 ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/cea16e22/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m
----------------------------------------------------------------------
diff --git a/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m b/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m
index bbfddba..79e6225 100644
--- a/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m
+++ b/ios/sdk/WeexSDK/Sources/Component/WXImageComponent.m
@@ -92,13 +92,15 @@ WX_EXPORT_METHOD(@selector(save:))
     return self;
 }
 
-- (void)configPlaceHolder:(NSDictionary*)attributes {
+- (void)configPlaceHolder:(NSDictionary*)attributes
+{
     if (attributes[@"placeHolder"] || attributes[@"placeholder"]) {
         _placeholdSrc = [[WXConvert NSString:attributes[@"placeHolder"]?:attributes[@"placeholder"]]stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
     }
 }
 
-- (void)configFilter:(NSDictionary *)styles {
+- (void)configFilter:(NSDictionary *)styles
+{
     if (styles[@"filter"]) {
         NSString *filter = styles[@"filter"];