calabash_drishyam 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE +21 -0
  8. data/README.md +41 -0
  9. data/Rakefile +6 -0
  10. data/bin/.DS_Store +0 -0
  11. data/bin/calabash_drishyam +29 -0
  12. data/calabash_drishyam.gemspec +35 -0
  13. data/calabash_drishyam.output +1113 -0
  14. data/lib/.DS_Store +0 -0
  15. data/lib/calabash_drishyam.rb +43 -0
  16. data/lib/calabash_drishyam/.DS_Store +0 -0
  17. data/lib/calabash_drishyam/assets/bg.gif +0 -0
  18. data/lib/calabash_drishyam/assets/bullet.gif +0 -0
  19. data/lib/calabash_drishyam/assets/calabash_inspector.js +22 -0
  20. data/lib/calabash_drishyam/assets/calabash_symbiote_screenshot_92.png +0 -0
  21. data/lib/calabash_drishyam/assets/footerbg.gif +0 -0
  22. data/lib/calabash_drishyam/assets/headerbg.gif +0 -0
  23. data/lib/calabash_drishyam/assets/query.json +1 -0
  24. data/lib/calabash_drishyam/assets/spy.jpg +0 -0
  25. data/lib/calabash_drishyam/assets/style.css +338 -0
  26. data/lib/calabash_drishyam/assets/tableft.gif +0 -0
  27. data/lib/calabash_drishyam/assets/tabright.gif +0 -0
  28. data/lib/calabash_drishyam/images/.DS_Store +0 -0
  29. data/lib/calabash_drishyam/images/.keep +0 -0
  30. data/lib/calabash_drishyam/images/Image_1.png +0 -0
  31. data/lib/calabash_drishyam/images/bg.gif +0 -0
  32. data/lib/calabash_drishyam/images/bullet.gif +0 -0
  33. data/lib/calabash_drishyam/images/footerbg.gif +0 -0
  34. data/lib/calabash_drishyam/images/headerbg.gif +0 -0
  35. data/lib/calabash_drishyam/images/query.json +1 -0
  36. data/lib/calabash_drishyam/images/spy.jpg +0 -0
  37. data/lib/calabash_drishyam/images/tableft.gif +0 -0
  38. data/lib/calabash_drishyam/images/tabright.gif +0 -0
  39. data/lib/calabash_drishyam/javascripts/.DS_Store +0 -0
  40. data/lib/calabash_drishyam/javascripts/application.js +16 -0
  41. data/lib/calabash_drishyam/javascripts/calabash_inspector.js +25 -0
  42. data/lib/calabash_drishyam/stylesheets/.DS_Store +0 -0
  43. data/lib/calabash_drishyam/stylesheets/style.css +122 -0
  44. data/lib/calabash_drishyam/stylesheets/style1.scss +345 -0
  45. data/lib/calabash_drishyam/version.rb +3 -0
  46. data/lib/calabash_drishyam/views/home.erb +97 -0
  47. data/lib/calabash_drishyam/views/layout.erb +28 -0
  48. metadata +219 -0
Binary file
@@ -0,0 +1,43 @@
1
+ require 'sinatra'
2
+ require 'json'
3
+ require 'sinatra/config_file'
4
+ require 'sinatra/respond_with'
5
+ require 'calabash-cucumber/operations'
6
+ require 'htmlentities'
7
+
8
+ class CalabashDrishyam < Sinatra::Base
9
+
10
+ include Calabash::Cucumber::Operations
11
+
12
+ ASSETS_PATH_EXPAND = File.expand_path('../calabash_drishyam/assets', __FILE__)
13
+ ASSETS_PATH = "#{ASSETS_PATH_EXPAND}/"
14
+ CALABASH_SCREENSHOT_FILE_NAME = "calabash_symbiote_screenshot"
15
+
16
+ use Rack::MethodOverride
17
+ set :static, true # set up static file routing
18
+ set :public_folder, ASSETS_PATH # set up the static dir (with images/js/css inside)
19
+
20
+ set :views, File.expand_path('../calabash_drishyam/views/', __FILE__) # set up the views dir
21
+ configure :development do
22
+ set :server, %w[thin mongrel webrick]
23
+ set :port, 4321
24
+ enable :logging
25
+ end
26
+
27
+ helpers do
28
+ include Rack::Utils
29
+ alias_method :make_valid_string, :escape_html
30
+ end
31
+
32
+ get '/' do
33
+ erb :'/home'
34
+ end
35
+
36
+ def inspect
37
+ end
38
+
39
+ def embed(x,y=nil,z=nil)
40
+ puts "Screenshot at #{x}"
41
+ end
42
+
43
+ end
@@ -0,0 +1,22 @@
1
+ function highlightViewInScreenShot(image_path, x, y, width, height)
2
+ {
3
+ var newImg = new Image();
4
+ newImg.onload = function() {
5
+
6
+ var canvas = document.getElementById('canvas');
7
+ var context = canvas.getContext("2d");
8
+
9
+ context.clearRect ( 0 , 0 , canvas.width, canvas.height);
10
+
11
+ context.drawImage(this,0,0,this.width,this.height,0,0,canvas.width,canvas.height)
12
+ context.globalAlpha = 0.3;
13
+ context.fillStyle = "green";
14
+ context.fillRect(x, y, width, height);
15
+ context.stroke();
16
+
17
+ }
18
+
19
+ newImg.src = image_path;
20
+
21
+ }
22
+
@@ -0,0 +1 @@
1
+ [{"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UIWindow", "label":"nil", "description":"<UIWindow: 0x7f8d5b074540; frame = (0 0; 320 568); gestureRecognizers = <NSArray: 0x7f8d5b074ec0>; layer = <UIWindowLayer: 0x7f8d5b0563e0>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UILayoutContainerView", "label":"nil", "description":"<UILayoutContainerView: 0x7f8d5b08b790; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7f8d5b081ca0>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UITransitionView", "label":"nil", "description":"<UITransitionView: 0x7f8d5b08c520; frame = (0 0; 320 568); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0x7f8d5b08c880>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UIViewControllerWrapperView", "label":"nil", "description":"<UIViewControllerWrapperView: 0x7f8d5b7319a0; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7f8d5b770d10>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UILayoutContainerView", "label":"nil", "description":"<UILayoutContainerView: 0x7f8d5b72d850; frame = (0 0; 320 568); autoresize = W+H; gestureRecognizers = <NSArray: 0x7f8d5b7708f0>; layer = <CALayer: 0x7f8d5b70a5e0>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UINavigationTransitionView", "label":"nil", "description":"<UINavigationTransitionView: 0x7f8d5b741900; frame = (0 0; 320 568); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0x7f8d5b775680>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UIViewControllerWrapperView", "label":"nil", "description":"<UIViewControllerWrapperView: 0x7f8d5b0d8440; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7f8d5b768f00>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":64, "x":0, "width":320, "height":504}, "accessibilityElement":false, "class":"UITableView", "label":"nil", "description":"<UITableView: 0x7f8d5b8c9e00; frame = (0 64; 320 504); clipsToBounds = YES; autoresize = W+H; gestureRecognizers = <NSArray: 0x7f8d5b76bc60>; layer = <CALayer: 0x7f8d5b76bd40>; contentOffset: {0, 0}; contentSize: {320, 705.5}>", "value":"nil", "rect":{"y":64, "height":504, "center_y":316, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":504}, "accessibilityElement":false, "class":"UITableViewWrapperView", "label":"nil", "description":"<UITableViewWrapperView: 0x7f8d5b719d20; frame = (0 0; 320 504); gestureRecognizers = <NSArray: 0x7f8d5b76b890>; layer = <CALayer: 0x7f8d5b76b960>; contentOffset: {0, 0}; contentSize: {320, 504}>", "value":"nil", "rect":{"y":64, "height":504, "center_y":316, "x":0, "center_x":160, "width":320}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b71b650; baseClass = UITableViewCell; frame = (0 35; 320 44); text = 'Sign In'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b7666d0>>", "label":"nil", "frame":{"y":35, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Sign In", "alpha":1, "enabled":true, "visible":1, "text":"Sign In", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":99, "height":44, "center_y":121, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b0efd70; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b766500>; layer = <CALayer: 0x7f8d5b766770>>", "value":"nil", "rect":{"y":99, "height":43.5, "center_y":120.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b0c9920; frame = (21 0; 264 43.5); text = 'Sign In'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b766230>>", "label":"Sign In", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Sign In", "alpha":1, "enabled":true, "visible":1, "text":"Sign In", "class":"UITableViewLabel", "rect":{"y":99, "height":43.5, "center_y":120.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7adcb0; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b74eb40>>", "value":"nil", "rect":{"y":99, "height":0.5, "center_y":99.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b090680; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b75edb0>>", "value":"nil", "rect":{"y":142.5, "height":0.5, "center_y":142.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b779590; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b75f400>> - (null)", "value":"nil", "rect":{"y":115, "height":11, "center_y":120.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7a8820; baseClass = UITableViewCell; frame = (0 79; 320 44); text = 'Create an Account'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b7663d0>>", "label":"nil", "frame":{"y":79, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Create an Account", "alpha":1, "enabled":true, "visible":1, "text":"Create an Account", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":143, "height":44, "center_y":165, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7a7e60; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b75e770>; layer = <CALayer: 0x7f8d5b766330>>", "value":"nil", "rect":{"y":143, "height":43.5, "center_y":164.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b71b950; frame = (21 0; 264 43.5); text = 'Create an Account'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b75e610>>", "label":"Create an Account", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Create an Account", "alpha":1, "enabled":true, "visible":1, "text":"Create an Account", "class":"UITableViewLabel", "rect":{"y":143, "height":43.5, "center_y":164.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7a8e40; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b7a8e00>>", "value":"nil", "rect":{"y":186.5, "height":0.5, "center_y":186.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7171e0; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b75d9d0>> - (null)", "value":"nil", "rect":{"y":159, "height":11, "center_y":164.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7a8f30; baseClass = UITableViewCell; frame = (0 123; 320 44); text = 'Notifications'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b75ccf0>>", "label":"nil", "frame":{"y":123, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Notifications", "alpha":1, "enabled":true, "visible":1, "text":"Notifications", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":187, "height":44, "center_y":209, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7a9230; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b75c850>; layer = <CALayer: 0x7f8d5b75cc50>>", "value":"nil", "rect":{"y":187, "height":43.5, "center_y":208.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7a93e0; frame = (21 0; 264 43.5); text = 'Notifications'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b75d450>>", "label":"Notifications", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Notifications", "alpha":1, "enabled":true, "visible":1, "text":"Notifications", "class":"UITableViewLabel", "rect":{"y":187, "height":43.5, "center_y":208.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7a9930; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b75b2d0>>", "value":"nil", "rect":{"y":230.5, "height":0.5, "center_y":230.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7a9830; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b75baf0>> - (null)", "value":"nil", "rect":{"y":203, "height":11, "center_y":208.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7a9a20; baseClass = UITableViewCell; frame = (0 167; 320 44); text = 'Nordstrom Rewards'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b75b550>>", "label":"nil", "frame":{"y":167, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Nordstrom Rewards", "alpha":1, "enabled":true, "visible":1, "text":"Nordstrom Rewards", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":231, "height":44, "center_y":253, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7a9d20; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b75aa80>; layer = <CALayer: 0x7f8d5b75ae30>>", "value":"nil", "rect":{"y":231, "height":43.5, "center_y":252.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7a9ed0; frame = (21 0; 264 43.5); text = 'Nordstrom Rewards'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b75a9e0>>", "label":"Nordstrom Rewards", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Nordstrom Rewards", "alpha":1, "enabled":true, "visible":1, "text":"Nordstrom Rewards", "class":"UITableViewLabel", "rect":{"y":231, "height":43.5, "center_y":252.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aa420; frame = (0 43.5; 320 0.5); layer = <CALayer: 0x7f8d5b75eac0>>", "value":"nil", "rect":{"y":274.5, "height":0.5, "center_y":274.75, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7aa320; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b759f60>> - (null)", "value":"nil", "rect":{"y":247, "height":11, "center_y":252.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7aa510; baseClass = UITableViewCell; frame = (0 246; 320 44); text = 'Store Locator'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b75ad80>>", "label":"nil", "frame":{"y":246, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Store Locator", "alpha":1, "enabled":true, "visible":1, "text":"Store Locator", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":310, "height":44, "center_y":332, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7aa810; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b758ab0>; layer = <CALayer: 0x7f8d5b7593d0>>", "value":"nil", "rect":{"y":310, "height":43.5, "center_y":331.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7aa9c0; frame = (21 0; 264 43.5); text = 'Store Locator'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b758a10>>", "label":"Store Locator", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Store Locator", "alpha":1, "enabled":true, "visible":1, "text":"Store Locator", "class":"UITableViewLabel", "rect":{"y":310, "height":43.5, "center_y":331.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aea30; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b74b880>>", "value":"nil", "rect":{"y":310, "height":0.5, "center_y":310.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aaf10; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b757490>>", "value":"nil", "rect":{"y":353.5, "height":0.5, "center_y":353.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7aae10; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b757b80>> - (null)", "value":"nil", "rect":{"y":326, "height":11, "center_y":331.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7ab000; baseClass = UITableViewCell; frame = (0 290; 320 44); text = 'Events'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b756f00>>", "label":"nil", "frame":{"y":290, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Events", "alpha":1, "enabled":true, "visible":1, "text":"Events", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":354, "height":44, "center_y":376, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7ab300; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b756b70>; layer = <CALayer: 0x7f8d5b756e60>>", "value":"nil", "rect":{"y":354, "height":43.5, "center_y":375.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7ab4b0; frame = (21 0; 264 43.5); text = 'Events'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b757740>>", "label":"Events", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Events", "alpha":1, "enabled":true, "visible":1, "text":"Events", "class":"UITableViewLabel", "rect":{"y":354, "height":43.5, "center_y":375.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aba00; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b755790>>", "value":"nil", "rect":{"y":397.5, "height":0.5, "center_y":397.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7ab900; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b755dc0>> - (null)", "value":"nil", "rect":{"y":370, "height":11, "center_y":375.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7abaf0; baseClass = UITableViewCell; frame = (0 334; 320 44); text = 'Customer Service'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b754f70>>", "label":"nil", "frame":{"y":334, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Customer Service", "alpha":1, "enabled":true, "visible":1, "text":"Customer Service", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":398, "height":44, "center_y":420, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7abdf0; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b754c80>; layer = <CALayer: 0x7f8d5b755010>>", "value":"nil", "rect":{"y":398, "height":43.5, "center_y":419.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7abfa0; frame = (21 0; 264 43.5); text = 'Customer Service'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b754bd0>>", "label":"Customer Service", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Customer Service", "alpha":1, "enabled":true, "visible":1, "text":"Customer Service", "class":"UITableViewLabel", "rect":{"y":398, "height":43.5, "center_y":419.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7ac4f0; frame = (0 43.5; 320 0.5); layer = <CALayer: 0x7f8d5b753930>>", "value":"nil", "rect":{"y":441.5, "height":0.5, "center_y":441.75, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7ac3f0; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b753f50>> - (null)", "value":"nil", "rect":{"y":414, "height":11, "center_y":419.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7ac5e0; baseClass = UITableViewCell; frame = (0 413; 320 44); text = 'Our Other Apps'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b753150>>", "label":"nil", "frame":{"y":413, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Our Other Apps", "alpha":1, "enabled":true, "visible":1, "text":"Our Other Apps", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":477, "height":44, "center_y":499, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7ac8e0; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b752db0>; layer = <CALayer: 0x7f8d5b7530b0>>", "value":"nil", "rect":{"y":477, "height":43.5, "center_y":498.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7aca90; frame = (21 0; 264 43.5); text = 'Our Other Apps'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b7539b0>>", "label":"Our Other Apps", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Our Other Apps", "alpha":1, "enabled":true, "visible":1, "text":"Our Other Apps", "class":"UITableViewLabel", "rect":{"y":477, "height":43.5, "center_y":498.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7af180; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b749620>>", "value":"nil", "rect":{"y":477, "height":0.5, "center_y":477.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7acfe0; frame = (0 43.5; 320 0.5); layer = <CALayer: 0x7f8d5b751a70>>", "value":"nil", "rect":{"y":520.5, "height":0.5, "center_y":520.75, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7acee0; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b752080>> - (null)", "value":"nil", "rect":{"y":493, "height":11, "center_y":498.5, "x":297, "center_x":300.5, "width":7}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7af450; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b7487e0>>", "value":"nil", "rect":{"y":556, "height":0.5, "center_y":556.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":3, "x":314.5, "width":2.5, "height":300}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7af7e0; frame = (314.5 3; 2.5 300); opaque = NO; autoresize = LM; userInteractionEnabled = NO; animations = { opacity=<CABasicAnimation: 0x7f8d5b46daf0>; }; layer = <CALayer: 0x7f8d5b03e4b0>> - (null)", "value":"nil", "rect":{"y":67, "height":300, "center_y":217, "x":314.5, "center_x":315.75, "width":2.5}}, {"alpha":1, "enabled":true, "id":"NORMoreView", "visible":1, "frame":{"y":20, "x":0, "width":320, "height":44}, "accessibilityElement":false, "class":"NORNavigationBar", "label":"nil", "description":"<NORNavigationBar: 0x7f8d5b3f4d50; baseClass = UINavigationBar; frame = (0 20; 320 44); autoresize = W; gestureRecognizers = <NSArray: 0x7f8d5b606110>; layer = <CALayer: 0x7f8d5b3f4ed0>>", "value":"nil", "rect":{"y":20, "height":44, "center_y":42, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":-20, "x":0, "width":320, "height":64}, "accessibilityElement":false, "class":"_UINavigationBarBackground", "label":"nil", "description":"<_UINavigationBarBackground: 0x7f8d5b6072b0; frame = (0 -20; 320 64); opaque = NO; autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b3f4ef0>> - (null)", "value":"nil", "rect":{"y":0, "height":64, "center_y":32, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":64, "x":0, "width":320, "height":1}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b6073f0; frame = (0 64; 320 1); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b3f4f40>> - (null)", "value":"nil", "rect":{"y":64, "height":1, "center_y":64.5, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":142.5, "width":35, "height":44}, "accessibilityElement":false, "class":"UIView", "label":"nil", "description":"<UIView: 0x7f8d5b740a10; frame = (142.5 0; 35 44); layer = <CALayer: 0x7f8d5b768350>>", "value":"nil", "rect":{"y":20, "height":44, "center_y":42, "x":142.5, "center_x":160, "width":35}}, {"id":"nil", "description":"<UILabel: 0x7f8d5b717080; frame = (0 0; 35 44); text = 'More'; autoresize = W; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b7684d0>>", "label":"More", "frame":{"y":0, "x":0, "width":35, "height":44}, "accessibilityElement":true, "value":"More", "alpha":1, "enabled":true, "visible":1, "text":"More", "class":"UILabel", "rect":{"y":20, "height":44, "center_y":42, "x":142.5, "center_x":160, "width":35}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":519, "x":0, "width":320, "height":49}, "accessibilityElement":false, "class":"UITabBar", "label":"nil", "description":"<UITabBar: 0x7f8d5b08bcd0; frame = (0 519; 320 49); autoresize = W+TM; layer = <CALayer: 0x7f8d5b08add0>>", "value":"nil", "rect":{"y":519, "height":49, "center_y":543.5, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":49}, "accessibilityElement":false, "class":"_UITabBarBackgroundView", "label":"nil", "description":"<_UITabBarBackgroundView: 0x7f8d5b0ca400; frame = (0 0; 320 49); autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0be7f0>> - (null)", "value":"nil", "rect":{"y":519, "height":49, "center_y":543.5, "x":0, "center_x":160, "width":320}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0901a0; baseClass = UIButton; frame = (0 0; 64 50); opaque = NO; layer = <CALayer: 0x7f8d5b090080>>", "label":"tab bar n style", "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":0, "center_x":32, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-n-style", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b32b610; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b370730>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":0, "center_x":32, "width":64}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0d7650; frame = (0 0; 320 0); opaque = NO; autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0ca5c0>> - (null)", "value":"nil", "rect":{"y":519, "height":0, "center_y":519, "x":0, "center_x":160, "width":320}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b3ef6f0; frame = (13 35; 34 12); text = 'N Style'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b3f07e0>>", "label":"N Style", "frame":{"y":35, "x":13, "width":34, "height":12}, "accessibilityElement":true, "value":"N Style", "alpha":1, "enabled":true, "visible":1, "text":"N Style", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":15, "center_x":32, "width":34}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b36b710; baseClass = UIButton; frame = (64 0; 64 50); opaque = NO; tag = 1; layer = <CALayer: 0x7f8d5b36b620>>", "label":"tab bar shop", "frame":{"y":0, "x":64, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":64, "center_x":96, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-shop", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0a4db0; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b078b30>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":64, "center_x":96, "width":64}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0a53f0; baseClass = UIButton; frame = (128 0; 64 50); opaque = NO; tag = 2; layer = <CALayer: 0x7f8d5b0a5300>>", "label":"tab bar wish list", "frame":{"y":0, "x":128, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":128, "center_x":160, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-wish-list", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0af390; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0a9ed0>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":128, "center_x":160, "width":64}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b613b00; frame = (8.5 35; 43 12); text = 'Wish List'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b613700>>", "label":"Wish List", "frame":{"y":35, "x":8.5, "width":43, "height":12}, "accessibilityElement":true, "value":"Wish List", "alpha":1, "enabled":true, "visible":1, "text":"Wish List", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":138.5, "center_x":160, "width":43}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0af9f0; baseClass = UIButton; frame = (192 0; 64 50); opaque = NO; tag = 3; layer = <CALayer: 0x7f8d5b0af900>>", "label":"tab bar bag", "frame":{"y":0, "x":192, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":192, "center_x":224, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-bag", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0b9820; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0b4310>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":192, "center_x":224, "width":64}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b616570; frame = (20.5 35; 19 12); text = 'Bag'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b6144c0>>", "label":"Bag", "frame":{"y":35, "x":20.5, "width":19, "height":12}, "accessibilityElement":true, "value":"Bag", "alpha":1, "enabled":true, "visible":1, "text":"Bag", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":214.5, "center_x":224, "width":19}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0b9f90; baseClass = UIButton; frame = (256 0; 64 50); opaque = NO; tag = 4; layer = <CALayer: 0x7f8d5b0ba170>>", "label":"tab bar more", "frame":{"y":0, "x":256, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":true, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":256, "center_x":288, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-more-selected", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0c3dd0; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0bea90>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":256, "center_x":288, "width":64}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b619260; frame = (18 35; 24 12); text = 'More'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b616fc0>>", "label":"More", "frame":{"y":35, "x":18, "width":24, "height":12}, "accessibilityElement":true, "value":"More", "alpha":1, "enabled":true, "visible":1, "text":"More", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":276, "center_x":288, "width":24}}]
@@ -0,0 +1,338 @@
1
+
2
+ /********************************************
3
+ HTML ELEMENTS
4
+ ********************************************/
5
+
6
+ /* top elements */
7
+ * { margin: 0; padding: 0; }
8
+
9
+ body {
10
+ margin: 0; padding: 0;
11
+ font: 70%/1.5 Verdana, Tahoma, Arial, Helvetica, sans-serif;
12
+ color: #333;
13
+ background: #FFF;
14
+ }
15
+
16
+ /* links */
17
+ a {
18
+ color: #003366;
19
+ background-color: inherit;
20
+ text-decoration: none;
21
+ }
22
+ a:hover {
23
+ color: #CC0001;
24
+ background-color: inherit;
25
+ }
26
+
27
+ /* headers */
28
+ h1, h2, h3, pre {
29
+ font-family: Arial, 'Trebuchet MS', Sans-Serif, Sans-Serif;
30
+ font-weight: bold;
31
+ color: #333;
32
+ }
33
+ h1 {
34
+ font-size: 120%;
35
+ letter-spacing: .5px;
36
+ text-align: center
37
+ }
38
+ h2 {
39
+ font-size: 115%;
40
+ text-transform: uppercase;
41
+ }
42
+ h3 {
43
+ font-size: 115%;
44
+ color: #003366;
45
+ }
46
+ pre {
47
+ font-size: 115%;
48
+ color: #003366;
49
+ }
50
+
51
+ /* images */
52
+ img {
53
+ border: 2px solid #CCC;
54
+ }
55
+ img.float-right {
56
+ margin: 5px 0px 10px 10px;
57
+ }
58
+ img.float-left {
59
+ margin: 5px 10px 10px 0px;
60
+ }
61
+
62
+ h1, h2, h3, p {
63
+ padding: 0;
64
+ margin: 10px;
65
+ }
66
+
67
+ ul, ol {
68
+ margin: 10px 20px;
69
+ padding: 0 20px;
70
+ }
71
+
72
+ code {
73
+ margin: 10px 0;
74
+ padding: 10px;
75
+ text-align: left;
76
+ display: block;
77
+ overflow: auto;
78
+ font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace;
79
+ /* white-space: pre; */
80
+ background: #FAFAFA;
81
+ border: 1px solid #f2f2f2;
82
+ border-left: 4px solid #CC0000;
83
+ }
84
+ acronym {
85
+ cursor: help;
86
+ border-bottom: 1px solid #777;
87
+ }
88
+ blockquote {
89
+ margin: 10px;
90
+ padding: 0 0 0 32px;
91
+ background: #FAFAFA image-url("quote.gif") no-repeat 5px 10px !important;
92
+ background-position: 8px 10px;
93
+ border: 1px solid #f2f2f2;
94
+ border-left: 4px solid #CC0000;
95
+ font-weight: bold;
96
+ }
97
+
98
+ /* form elements */
99
+ form {
100
+ margin:10px; padding: 0 5px;
101
+ border: 1px solid #f2f2f2;
102
+ background-color: #FAFAFA;
103
+ }
104
+ label {
105
+ display:block;
106
+ font-weight:bold;
107
+ margin:5px 0;
108
+ }
109
+ input {
110
+ padding: 2px;
111
+ border:1px solid #eee;
112
+ font: normal 1em Verdana, sans-serif;
113
+ color:#777;
114
+ }
115
+ textarea {
116
+ width:400px;
117
+ padding:2px;
118
+ font: normal 1em Verdana, sans-serif;
119
+ border:1px solid #eee;
120
+ height:100px;
121
+ display:block;
122
+ color:#777;
123
+ }
124
+ input.button {
125
+ margin: 0;
126
+ font: bolder 12px Arial, Sans-serif;
127
+ border: 1px solid #CCC;
128
+ padding: 1px;
129
+ background: #FFF;
130
+ color: #CC0000;
131
+ }
132
+ /* search form */
133
+ form.search {
134
+ position: absolute;
135
+ top: 5px; right: 5px;
136
+ padding: 0; margin: 0;
137
+ border: none;
138
+ background-color: transparent;
139
+ }
140
+ form.search input.textbox {
141
+ margin: 0;
142
+ width: 120px;
143
+ border: 1px solid #CCC;
144
+ background: #FFF;
145
+ color: #333;
146
+ }
147
+ form.search input.searchbutton {
148
+ margin: 0;
149
+ font-size: 100%;
150
+ font-family: Arial, Sans-serif;
151
+ border: 1px solid #CCC;
152
+ background: #FFFFFF image-url("headerbg.gif") repeat-x bottom left;
153
+ padding: 1px;
154
+ font-weight: bold;
155
+ height: 23px;
156
+ color: #333;
157
+ width: 60px;
158
+ }
159
+
160
+ /**********************************
161
+ LAYOUT
162
+ ***********************************/
163
+ #wrap {
164
+ margin: 0 auto;
165
+ width: 95%;
166
+ }
167
+
168
+ /* header */
169
+ #header {
170
+ position: relative;
171
+ margin: 0; padding: 0;
172
+ height: 50px;
173
+ background: #333;
174
+ }
175
+
176
+ #header #logo {
177
+ position: absolute;
178
+ top: 9px; left: 5px;
179
+ left: 30px;
180
+ font: bold 30px "trebuchet MS", Arial, Tahoma, Sans-Serif;
181
+ margin: 0; padding: 0;
182
+ letter-spacing: -1px;
183
+ color: #000;
184
+ }
185
+
186
+ #header #slogan {
187
+ position: absolute;
188
+ top: 40px; left: 90px;
189
+ font: bold 15px "trebuchet MS", Arial, Tahoma, Sans-Serif;
190
+ margin: 0; padding: 0;
191
+ letter-spacing: -1px;
192
+ color: #000;
193
+ }
194
+
195
+ /* navigation tabs */
196
+ #header ul {
197
+ position: absolute;
198
+ margin:0;
199
+ list-style:none;
200
+ right:-18px ; bottom: 3px;
201
+ font: bold 13px 'Trebuchet MS', Arial, Sans-serif;
202
+ }
203
+ #header li {
204
+ display:inline;
205
+ margin:0; padding:0;
206
+ }
207
+ #header a {
208
+ float:left;
209
+ background: image-url("tableft.gif") no-repeat left top;
210
+ margin:0;
211
+ padding:0 0 0 4px;
212
+ text-decoration:none;
213
+ }
214
+ #header a span {
215
+ float:left;
216
+ display:block;
217
+ background: image-url("tabright.gif") no-repeat right top;
218
+ padding:5px 15px 4px 6px;
219
+ color:#FFF;
220
+ }
221
+ /* Commented Backslash Hack hides rule from IE5-Mac \*/
222
+ #header a span {float:none;}
223
+ /* End IE5-Mac hack */
224
+ #header a:hover span {
225
+ color:#FFF;
226
+ }
227
+ #header a:hover {
228
+ background-position:0% -42px;
229
+ }
230
+ #header a:hover span {
231
+ background-position:100% -42px;
232
+ }
233
+ #header #current a {
234
+ background-position:0% -42px;
235
+ }
236
+ #header #current a span {
237
+ background-position:100% -42px;
238
+ }
239
+
240
+ /* main column */
241
+ #main {
242
+ float: right;
243
+ margin: 0; padding: 0;
244
+ width: 65%;
245
+ }
246
+
247
+ #canvascontainer {
248
+ margin: 0; padding: 0;
249
+ overflow: auto;
250
+ }
251
+ #main h1 {
252
+ margin: 10px 0 0 0;
253
+ padding: 4px 0 4px 8px;
254
+ font: bold 105% Arial, Sans-Serif;
255
+ color: #FFF;
256
+ text-transform: uppercase;
257
+ background: #333;
258
+ letter-spacing: 1px;
259
+ }
260
+
261
+ #main canvas
262
+ {
263
+ margin: 5px 0;
264
+ text-align:center;
265
+ }
266
+
267
+ /* sidebar */
268
+ #sidebar {
269
+ float: left;
270
+ width: 33%;
271
+ margin: 0; padding: 0;
272
+ background-color: #FFFFFF;
273
+ }
274
+ #sidebar h1 {
275
+ margin: 10px 0 0 0;
276
+ padding: 4px 0 4px 8px;
277
+ font: bold 105% Arial, Sans-Serif;
278
+ color: #FFF;
279
+ text-transform: uppercase;
280
+ background: #333;
281
+ letter-spacing: 1px;
282
+ }
283
+ #sidebar .left-box {
284
+ border: 1px solid #EBEBEB;
285
+ margin: 0 0 5px 0;
286
+ background: #FFF;
287
+ }
288
+ #sidebar ul.sidemenu {
289
+ list-style: none;
290
+ text-align: left;
291
+ margin: 3px 0px 8px 0;
292
+ padding: 0;
293
+ text-decoration: none;
294
+ overflow: auto;
295
+ }
296
+ #sidebar ul.sidemenu li {
297
+ border-bottom: 1px solid #f2f2f2;
298
+ background: url("bullet.gif") no-repeat 3px 20px;
299
+ padding: 3px 5px 3px 25px;
300
+ margin: 0;
301
+ }
302
+ #sidebar ul.sidemenu a {
303
+ font-weight: bolder;
304
+ padding: 3px 0px;
305
+ background: none;
306
+ }
307
+
308
+ /* footer */
309
+ .footer {
310
+ clear: both;
311
+ border-top: 1px solid #f2f2f2;
312
+ background: #FFF image-url("footerbg.gif") repeat-x;
313
+ padding: 2px 0 10px 0;
314
+ text-align: center;
315
+ line-height: 1.5em;
316
+ font-size: 95%;
317
+ }
318
+ .footer a {
319
+ text-decoration: none;
320
+ font-weight: bold;
321
+ }
322
+
323
+ /* alignment classes */
324
+ .float-left { float: left; }
325
+ .float-right { float: right; }
326
+ .align-left { text-align: left; }
327
+ .align-right { text-align: right; }
328
+
329
+ /* display and additional classes */
330
+ .clear { clear: both; }
331
+ .red { color: #CC0000; }
332
+ .white { color: #FFFFFF; }
333
+ .comments {
334
+ margin: 20px 10px 5px 10px;
335
+ padding: 3px 0;
336
+ border-bottom: 1px dashed #EFF0F1;
337
+ border-top: 1px dashed #EFF0F1;
338
+ }
File without changes
@@ -0,0 +1 @@
1
+ [{"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UIWindow", "label":"nil", "description":"<UIWindow: 0x7f8d5b074540; frame = (0 0; 320 568); gestureRecognizers = <NSArray: 0x7f8d5b074ec0>; layer = <UIWindowLayer: 0x7f8d5b0563e0>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UILayoutContainerView", "label":"nil", "description":"<UILayoutContainerView: 0x7f8d5b08b790; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7f8d5b081ca0>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UITransitionView", "label":"nil", "description":"<UITransitionView: 0x7f8d5b08c520; frame = (0 0; 320 568); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0x7f8d5b08c880>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UIViewControllerWrapperView", "label":"nil", "description":"<UIViewControllerWrapperView: 0x7f8d5b7319a0; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7f8d5b770d10>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UILayoutContainerView", "label":"nil", "description":"<UILayoutContainerView: 0x7f8d5b72d850; frame = (0 0; 320 568); autoresize = W+H; gestureRecognizers = <NSArray: 0x7f8d5b7708f0>; layer = <CALayer: 0x7f8d5b70a5e0>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UINavigationTransitionView", "label":"nil", "description":"<UINavigationTransitionView: 0x7f8d5b741900; frame = (0 0; 320 568); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0x7f8d5b775680>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":568}, "accessibilityElement":false, "class":"UIViewControllerWrapperView", "label":"nil", "description":"<UIViewControllerWrapperView: 0x7f8d5b0d8440; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7f8d5b768f00>>", "value":"nil", "rect":{"y":0, "height":568, "center_y":284, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":64, "x":0, "width":320, "height":504}, "accessibilityElement":false, "class":"UITableView", "label":"nil", "description":"<UITableView: 0x7f8d5b8c9e00; frame = (0 64; 320 504); clipsToBounds = YES; autoresize = W+H; gestureRecognizers = <NSArray: 0x7f8d5b76bc60>; layer = <CALayer: 0x7f8d5b76bd40>; contentOffset: {0, 0}; contentSize: {320, 705.5}>", "value":"nil", "rect":{"y":64, "height":504, "center_y":316, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":504}, "accessibilityElement":false, "class":"UITableViewWrapperView", "label":"nil", "description":"<UITableViewWrapperView: 0x7f8d5b719d20; frame = (0 0; 320 504); gestureRecognizers = <NSArray: 0x7f8d5b76b890>; layer = <CALayer: 0x7f8d5b76b960>; contentOffset: {0, 0}; contentSize: {320, 504}>", "value":"nil", "rect":{"y":64, "height":504, "center_y":316, "x":0, "center_x":160, "width":320}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b71b650; baseClass = UITableViewCell; frame = (0 35; 320 44); text = 'Sign In'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b7666d0>>", "label":"nil", "frame":{"y":35, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Sign In", "alpha":1, "enabled":true, "visible":1, "text":"Sign In", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":99, "height":44, "center_y":121, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b0efd70; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b766500>; layer = <CALayer: 0x7f8d5b766770>>", "value":"nil", "rect":{"y":99, "height":43.5, "center_y":120.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b0c9920; frame = (21 0; 264 43.5); text = 'Sign In'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b766230>>", "label":"Sign In", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Sign In", "alpha":1, "enabled":true, "visible":1, "text":"Sign In", "class":"UITableViewLabel", "rect":{"y":99, "height":43.5, "center_y":120.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7adcb0; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b74eb40>>", "value":"nil", "rect":{"y":99, "height":0.5, "center_y":99.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b090680; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b75edb0>>", "value":"nil", "rect":{"y":142.5, "height":0.5, "center_y":142.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b779590; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b75f400>> - (null)", "value":"nil", "rect":{"y":115, "height":11, "center_y":120.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7a8820; baseClass = UITableViewCell; frame = (0 79; 320 44); text = 'Create an Account'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b7663d0>>", "label":"nil", "frame":{"y":79, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Create an Account", "alpha":1, "enabled":true, "visible":1, "text":"Create an Account", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":143, "height":44, "center_y":165, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7a7e60; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b75e770>; layer = <CALayer: 0x7f8d5b766330>>", "value":"nil", "rect":{"y":143, "height":43.5, "center_y":164.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b71b950; frame = (21 0; 264 43.5); text = 'Create an Account'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b75e610>>", "label":"Create an Account", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Create an Account", "alpha":1, "enabled":true, "visible":1, "text":"Create an Account", "class":"UITableViewLabel", "rect":{"y":143, "height":43.5, "center_y":164.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7a8e40; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b7a8e00>>", "value":"nil", "rect":{"y":186.5, "height":0.5, "center_y":186.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7171e0; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b75d9d0>> - (null)", "value":"nil", "rect":{"y":159, "height":11, "center_y":164.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7a8f30; baseClass = UITableViewCell; frame = (0 123; 320 44); text = 'Notifications'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b75ccf0>>", "label":"nil", "frame":{"y":123, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Notifications", "alpha":1, "enabled":true, "visible":1, "text":"Notifications", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":187, "height":44, "center_y":209, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7a9230; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b75c850>; layer = <CALayer: 0x7f8d5b75cc50>>", "value":"nil", "rect":{"y":187, "height":43.5, "center_y":208.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7a93e0; frame = (21 0; 264 43.5); text = 'Notifications'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b75d450>>", "label":"Notifications", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Notifications", "alpha":1, "enabled":true, "visible":1, "text":"Notifications", "class":"UITableViewLabel", "rect":{"y":187, "height":43.5, "center_y":208.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7a9930; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b75b2d0>>", "value":"nil", "rect":{"y":230.5, "height":0.5, "center_y":230.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7a9830; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b75baf0>> - (null)", "value":"nil", "rect":{"y":203, "height":11, "center_y":208.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7a9a20; baseClass = UITableViewCell; frame = (0 167; 320 44); text = 'Nordstrom Rewards'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b75b550>>", "label":"nil", "frame":{"y":167, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Nordstrom Rewards", "alpha":1, "enabled":true, "visible":1, "text":"Nordstrom Rewards", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":231, "height":44, "center_y":253, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7a9d20; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b75aa80>; layer = <CALayer: 0x7f8d5b75ae30>>", "value":"nil", "rect":{"y":231, "height":43.5, "center_y":252.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7a9ed0; frame = (21 0; 264 43.5); text = 'Nordstrom Rewards'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b75a9e0>>", "label":"Nordstrom Rewards", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Nordstrom Rewards", "alpha":1, "enabled":true, "visible":1, "text":"Nordstrom Rewards", "class":"UITableViewLabel", "rect":{"y":231, "height":43.5, "center_y":252.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aa420; frame = (0 43.5; 320 0.5); layer = <CALayer: 0x7f8d5b75eac0>>", "value":"nil", "rect":{"y":274.5, "height":0.5, "center_y":274.75, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7aa320; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b759f60>> - (null)", "value":"nil", "rect":{"y":247, "height":11, "center_y":252.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7aa510; baseClass = UITableViewCell; frame = (0 246; 320 44); text = 'Store Locator'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b75ad80>>", "label":"nil", "frame":{"y":246, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Store Locator", "alpha":1, "enabled":true, "visible":1, "text":"Store Locator", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":310, "height":44, "center_y":332, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7aa810; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b758ab0>; layer = <CALayer: 0x7f8d5b7593d0>>", "value":"nil", "rect":{"y":310, "height":43.5, "center_y":331.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7aa9c0; frame = (21 0; 264 43.5); text = 'Store Locator'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b758a10>>", "label":"Store Locator", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Store Locator", "alpha":1, "enabled":true, "visible":1, "text":"Store Locator", "class":"UITableViewLabel", "rect":{"y":310, "height":43.5, "center_y":331.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aea30; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b74b880>>", "value":"nil", "rect":{"y":310, "height":0.5, "center_y":310.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aaf10; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b757490>>", "value":"nil", "rect":{"y":353.5, "height":0.5, "center_y":353.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7aae10; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b757b80>> - (null)", "value":"nil", "rect":{"y":326, "height":11, "center_y":331.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7ab000; baseClass = UITableViewCell; frame = (0 290; 320 44); text = 'Events'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b756f00>>", "label":"nil", "frame":{"y":290, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Events", "alpha":1, "enabled":true, "visible":1, "text":"Events", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":354, "height":44, "center_y":376, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7ab300; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b756b70>; layer = <CALayer: 0x7f8d5b756e60>>", "value":"nil", "rect":{"y":354, "height":43.5, "center_y":375.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7ab4b0; frame = (21 0; 264 43.5); text = 'Events'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b757740>>", "label":"Events", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Events", "alpha":1, "enabled":true, "visible":1, "text":"Events", "class":"UITableViewLabel", "rect":{"y":354, "height":43.5, "center_y":375.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":15, "width":305, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7aba00; frame = (15 43.5; 305 0.5); layer = <CALayer: 0x7f8d5b755790>>", "value":"nil", "rect":{"y":397.5, "height":0.5, "center_y":397.75, "x":15, "center_x":167.5, "width":305}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7ab900; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b755dc0>> - (null)", "value":"nil", "rect":{"y":370, "height":11, "center_y":375.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7abaf0; baseClass = UITableViewCell; frame = (0 334; 320 44); text = 'Customer Service'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b754f70>>", "label":"nil", "frame":{"y":334, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Customer Service", "alpha":1, "enabled":true, "visible":1, "text":"Customer Service", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":398, "height":44, "center_y":420, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7abdf0; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b754c80>; layer = <CALayer: 0x7f8d5b755010>>", "value":"nil", "rect":{"y":398, "height":43.5, "center_y":419.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7abfa0; frame = (21 0; 264 43.5); text = 'Customer Service'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b754bd0>>", "label":"Customer Service", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Customer Service", "alpha":1, "enabled":true, "visible":1, "text":"Customer Service", "class":"UITableViewLabel", "rect":{"y":398, "height":43.5, "center_y":419.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7ac4f0; frame = (0 43.5; 320 0.5); layer = <CALayer: 0x7f8d5b753930>>", "value":"nil", "rect":{"y":441.5, "height":0.5, "center_y":441.75, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7ac3f0; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b753f50>> - (null)", "value":"nil", "rect":{"y":414, "height":11, "center_y":419.5, "x":297, "center_x":300.5, "width":7}}, {"id":"nil", "description":"<NORGroupedTableViewCell: 0x7f8d5b7ac5e0; baseClass = UITableViewCell; frame = (0 413; 320 44); text = 'Our Other Apps'; opaque = NO; autoresize = W; layer = <CALayer: 0x7f8d5b753150>>", "label":"nil", "frame":{"y":413, "x":0, "width":320, "height":44}, "accessibilityElement":false, "value":"Our Other Apps", "alpha":1, "enabled":true, "visible":1, "text":"Our Other Apps", "class":"NORGroupedTableViewCell", "selected":false, "rect":{"y":477, "height":44, "center_y":499, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":297, "height":43.5}, "accessibilityElement":false, "class":"UITableViewCellContentView", "label":"nil", "description":"<UITableViewCellContentView: 0x7f8d5b7ac8e0; frame = (0 0; 297 43.5); gestureRecognizers = <NSArray: 0x7f8d5b752db0>; layer = <CALayer: 0x7f8d5b7530b0>>", "value":"nil", "rect":{"y":477, "height":43.5, "center_y":498.75, "x":0, "center_x":148.5, "width":297}}, {"id":"nil", "description":"<UITableViewLabel: 0x7f8d5b7aca90; frame = (21 0; 264 43.5); text = 'Our Other Apps'; autoresize = W+H; userInteractionEnabled = NO; tag = 1; layer = <_UILabelLayer: 0x7f8d5b7539b0>>", "label":"Our Other Apps", "frame":{"y":0, "x":21, "width":264, "height":43.5}, "accessibilityElement":true, "value":"Our Other Apps", "alpha":1, "enabled":true, "visible":1, "text":"Our Other Apps", "class":"UITableViewLabel", "rect":{"y":477, "height":43.5, "center_y":498.75, "x":21, "center_x":153, "width":264}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7af180; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b749620>>", "value":"nil", "rect":{"y":477, "height":0.5, "center_y":477.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":43.5, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7acfe0; frame = (0 43.5; 320 0.5); layer = <CALayer: 0x7f8d5b751a70>>", "value":"nil", "rect":{"y":520.5, "height":0.5, "center_y":520.75, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"chevron", "visible":1, "frame":{"y":16, "x":297, "width":7, "height":11}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7acee0; frame = (297 16; 7 11); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b752080>> - (null)", "value":"nil", "rect":{"y":493, "height":11, "center_y":498.5, "x":297, "center_x":300.5, "width":7}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0.5}, "accessibilityElement":false, "class":"_UITableViewCellSeparatorView", "label":"nil", "description":"<_UITableViewCellSeparatorView: 0x7f8d5b7af450; frame = (0 0; 320 0.5); layer = <CALayer: 0x7f8d5b7487e0>>", "value":"nil", "rect":{"y":556, "height":0.5, "center_y":556.25, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":3, "x":314.5, "width":2.5, "height":300}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b7af7e0; frame = (314.5 3; 2.5 300); opaque = NO; autoresize = LM; userInteractionEnabled = NO; animations = { opacity=<CABasicAnimation: 0x7f8d5b46daf0>; }; layer = <CALayer: 0x7f8d5b03e4b0>> - (null)", "value":"nil", "rect":{"y":67, "height":300, "center_y":217, "x":314.5, "center_x":315.75, "width":2.5}}, {"alpha":1, "enabled":true, "id":"NORMoreView", "visible":1, "frame":{"y":20, "x":0, "width":320, "height":44}, "accessibilityElement":false, "class":"NORNavigationBar", "label":"nil", "description":"<NORNavigationBar: 0x7f8d5b3f4d50; baseClass = UINavigationBar; frame = (0 20; 320 44); autoresize = W; gestureRecognizers = <NSArray: 0x7f8d5b606110>; layer = <CALayer: 0x7f8d5b3f4ed0>>", "value":"nil", "rect":{"y":20, "height":44, "center_y":42, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":-20, "x":0, "width":320, "height":64}, "accessibilityElement":false, "class":"_UINavigationBarBackground", "label":"nil", "description":"<_UINavigationBarBackground: 0x7f8d5b6072b0; frame = (0 -20; 320 64); opaque = NO; autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b3f4ef0>> - (null)", "value":"nil", "rect":{"y":0, "height":64, "center_y":32, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":64, "x":0, "width":320, "height":1}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b6073f0; frame = (0 64; 320 1); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b3f4f40>> - (null)", "value":"nil", "rect":{"y":64, "height":1, "center_y":64.5, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":0, "x":142.5, "width":35, "height":44}, "accessibilityElement":false, "class":"UIView", "label":"nil", "description":"<UIView: 0x7f8d5b740a10; frame = (142.5 0; 35 44); layer = <CALayer: 0x7f8d5b768350>>", "value":"nil", "rect":{"y":20, "height":44, "center_y":42, "x":142.5, "center_x":160, "width":35}}, {"id":"nil", "description":"<UILabel: 0x7f8d5b717080; frame = (0 0; 35 44); text = 'More'; autoresize = W; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b7684d0>>", "label":"More", "frame":{"y":0, "x":0, "width":35, "height":44}, "accessibilityElement":true, "value":"More", "alpha":1, "enabled":true, "visible":1, "text":"More", "class":"UILabel", "rect":{"y":20, "height":44, "center_y":42, "x":142.5, "center_x":160, "width":35}}, {"alpha":1, "enabled":true, "id":"nil", "visible":1, "frame":{"y":519, "x":0, "width":320, "height":49}, "accessibilityElement":false, "class":"UITabBar", "label":"nil", "description":"<UITabBar: 0x7f8d5b08bcd0; frame = (0 519; 320 49); autoresize = W+TM; layer = <CALayer: 0x7f8d5b08add0>>", "value":"nil", "rect":{"y":519, "height":49, "center_y":543.5, "x":0, "center_x":160, "width":320}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":49}, "accessibilityElement":false, "class":"_UITabBarBackgroundView", "label":"nil", "description":"<_UITabBarBackgroundView: 0x7f8d5b0ca400; frame = (0 0; 320 49); autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0be7f0>> - (null)", "value":"nil", "rect":{"y":519, "height":49, "center_y":543.5, "x":0, "center_x":160, "width":320}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0901a0; baseClass = UIButton; frame = (0 0; 64 50); opaque = NO; layer = <CALayer: 0x7f8d5b090080>>", "label":"tab bar n style", "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":0, "center_x":32, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-n-style", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b32b610; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b370730>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":0, "center_x":32, "width":64}}, {"alpha":1, "enabled":false, "id":"nil", "visible":1, "frame":{"y":0, "x":0, "width":320, "height":0}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0d7650; frame = (0 0; 320 0); opaque = NO; autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0ca5c0>> - (null)", "value":"nil", "rect":{"y":519, "height":0, "center_y":519, "x":0, "center_x":160, "width":320}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b3ef6f0; frame = (13 35; 34 12); text = 'N Style'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b3f07e0>>", "label":"N Style", "frame":{"y":35, "x":13, "width":34, "height":12}, "accessibilityElement":true, "value":"N Style", "alpha":1, "enabled":true, "visible":1, "text":"N Style", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":15, "center_x":32, "width":34}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b36b710; baseClass = UIButton; frame = (64 0; 64 50); opaque = NO; tag = 1; layer = <CALayer: 0x7f8d5b36b620>>", "label":"tab bar shop", "frame":{"y":0, "x":64, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":64, "center_x":96, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-shop", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0a4db0; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b078b30>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":64, "center_x":96, "width":64}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0a53f0; baseClass = UIButton; frame = (128 0; 64 50); opaque = NO; tag = 2; layer = <CALayer: 0x7f8d5b0a5300>>", "label":"tab bar wish list", "frame":{"y":0, "x":128, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":128, "center_x":160, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-wish-list", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0af390; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0a9ed0>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":128, "center_x":160, "width":64}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b613b00; frame = (8.5 35; 43 12); text = 'Wish List'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b613700>>", "label":"Wish List", "frame":{"y":35, "x":8.5, "width":43, "height":12}, "accessibilityElement":true, "value":"Wish List", "alpha":1, "enabled":true, "visible":1, "text":"Wish List", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":138.5, "center_x":160, "width":43}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0af9f0; baseClass = UIButton; frame = (192 0; 64 50); opaque = NO; tag = 3; layer = <CALayer: 0x7f8d5b0af900>>", "label":"tab bar bag", "frame":{"y":0, "x":192, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":false, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":192, "center_x":224, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-bag", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0b9820; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0b4310>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":192, "center_x":224, "width":64}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b616570; frame = (20.5 35; 19 12); text = 'Bag'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b6144c0>>", "label":"Bag", "frame":{"y":35, "x":20.5, "width":19, "height":12}, "accessibilityElement":true, "value":"Bag", "alpha":1, "enabled":true, "visible":1, "text":"Bag", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":214.5, "center_x":224, "width":19}}, {"id":"nil", "description":"<NORTabBarButton: 0x7f8d5b0b9f90; baseClass = UIButton; frame = (256 0; 64 50); opaque = NO; tag = 4; layer = <CALayer: 0x7f8d5b0ba170>>", "label":"tab bar more", "frame":{"y":0, "x":256, "width":64, "height":50}, "accessibilityElement":true, "value":"nil", "alpha":1, "enabled":true, "visible":1, "selected":true, "class":"NORTabBarButton", "rect":{"y":519, "height":50, "center_y":544, "x":256, "center_x":288, "width":64}}, {"alpha":1, "enabled":false, "id":"tab-bar-more-selected", "visible":1, "frame":{"y":0, "x":0, "width":64, "height":50}, "accessibilityElement":false, "class":"UIImageView", "label":"nil", "description":"<UIImageView: 0x7f8d5b0c3dd0; frame = (0 0; 64 50); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x7f8d5b0bea90>> - (null)", "value":"nil", "rect":{"y":519, "height":50, "center_y":544, "x":256, "center_x":288, "width":64}}, {"id":"nil", "description":"<UITabBarButtonLabel: 0x7f8d5b619260; frame = (18 35; 24 12); text = 'More'; opaque = NO; userInteractionEnabled = NO; layer = <_UILabelLayer: 0x7f8d5b616fc0>>", "label":"More", "frame":{"y":35, "x":18, "width":24, "height":12}, "accessibilityElement":true, "value":"More", "alpha":1, "enabled":true, "visible":1, "text":"More", "class":"UITabBarButtonLabel", "rect":{"y":555, "height":12, "center_y":561, "x":276, "center_x":288, "width":24}}]