Decompile compiled storyboard / xib files?

2015-03-13 Thread Aaron Lewis
Hi, Xcode cannot open compiled storyboard files, e.g MainStoryboard.storyboardc Is there any way to open them? Or decompile them into storyboard files -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33

What's the right way to "remove the footerView" of a UITableView?

2015-03-13 Thread Aaron Lewis
So what is the official way to do the same thing? -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

[RESOLVED] Re: What's wrong with this code, why is the label invisible?

2015-02-24 Thread Aaron Lewis
]-0-[label(>=30)]-0-|" Changing the constraints to something like this worked. On Tue, Feb 24, 2015 at 6:01 PM, Roland King wrote: > >> On 24 Feb 2015, at 16:44, Aaron Lewis wrote: >> >> Can someone please take a look at this? >> >> http://stackover

What's wrong with this code, why is the label invisible?

2015-02-24 Thread Aaron Lewis
x27;t really tell why. -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or mode

[RESOLVED] Re: How can I set a minimal height for a UITableView?

2015-02-22 Thread Aaron Lewis
Wow, great job! It partially solved the problem :-P I'm not sure how others will do it, but I will resize the UITableView in Xcode, fit all rows and use that trick. On Sun, Feb 22, 2015 at 6:55 PM, Mike Abdullah wrote: > >> On 22 Feb 2015, at 07:51, Aaron Lewis wrote: >> &

How can I set a minimal height for a UITableView?

2015-02-21 Thread Aaron Lewis
Hi, I have a fixed number of rows in a UITableView, now I need to set a minimal height. Otherwise I would see the extra "row" background. Is that possible? -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602

Looking for a TableView controller, that can create layout like this

2015-02-21 Thread Aaron Lewis
s Is there any other recommended table controls? -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

[RESOLVED] Re: What UIControl could this be?

2015-02-09 Thread Aaron Lewis
an then just > configure the segment text with line breaks to get this specific look. > > On Feb 7, 2015, at 10:42 PM, Aaron Lewis wrote: > > Hi, > > I'm trying to create something similar in this image: > http://ui4app.qiniudn.com/photo/app/527dae076803fa9c0103.png &g

Spanning UITextField on navigation bar

2015-02-09 Thread Aaron Lewis
Hi, I'm trying to put only a UITextField and a bar button on a navigation bar. The text field will take both the space of both left and the middle space. Is that possible? In Xcode I can't drag it like that, it's either left or middle -- Best Regards, Aaron Lewis - PGP: 0x

What UIControl could this be?

2015-02-07 Thread Aaron Lewis
similar to UISegmentControl I guess? But I'm not sure how it become like that -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-d

Trying to create a circular button with image, but the image wasn't clipped automatically

2015-02-07 Thread Aaron Lewis
Image: [UIImage imageNamed:@"avatar.jpeg"] forState:UIControlStateNormal]; But the framework doesn't seem to "clip" the rectangular image into a circular one. All extra parts are displayed on screen. Did I get this wrong? Am I expected to use only circular images? -- B

[RESOLVED] Re: What's the right way to use UIActivityIndicatorView? After it's stopped

2015-01-27 Thread Aaron Lewis
ontrol when the stopAnimation method is > called. But in xcode if I drag the UIActivityIndicatorView first, any other > UI Control seems to be replacing it. Now it looked like I had to do create > the other UI Control and add it manually when the animation is stopped. That > is wrong right

What's the right way to use UIActivityIndicatorView? After it's stopped

2015-01-25 Thread Aaron Lewis
on is stopped. That is wrong right? What's the suggestion -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Ple

Adding constrains for anonymous buttons

2015-01-25 Thread Aaron Lewis
0; i < 3; ++ i) { buttons[i] = [[UIButton alloc] init]; } Is there any suggestion? -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev m

[RESOLVED] Re: Trying to create a collection view with evenly distributed cell

2015-01-25 Thread Aaron Lewis
Thanks Mike, I followed the tutorial and did the exact same thing in objc, works. On Sun, Jan 25, 2015 at 6:21 PM, Mike Abdullah wrote: > >> On 25 Jan 2015, at 10:12, Aaron Lewis wrote: >> >> Hi, >> >> I'm trying to create a 3 cell per row collection, an

Trying to create a collection view with evenly distributed cell

2015-01-25 Thread Aaron Lewis
correct way to do it? -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moder

[SOLVED] Re: Is the button group in Safari a general widget ?

2015-01-23 Thread Aaron Lewis
iOS so I didn't mention it .. I'll be clear about that next time. P.S I also tried NSSegmentedControl as you suggested, but UIToolBar looks more like it On Sat, Jan 24, 2015 at 12:47 AM, Fritz Anderson wrote: > On 23 Jan 2015, at 10:20 AM, Aaron Lewis wrote: > >> I've

Is the button group in Safari a general widget ?

2015-01-23 Thread Aaron Lewis
Hi, I've seen a lot of apps like Safari. 5 buttons in the bottom Is that a common widget? I couldn't find it on google -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602

Re: Need help on xcode offline documents, it doesn't recognize the docsets

2015-01-20 Thread Aaron Lewis
Hi all, never mind, I'm gonna forward this to Xcode mailing list, which seems more appropriate. Thanks Jens On Tue, Jan 20, 2015 at 8:41 AM, Aaron Lewis wrote: > Hmm, I'm running a slow network. I tried few times and if internet > connection interrupts suddenly, I had to start

Re: Need help on xcode offline documents, it doesn't recognize the docsets

2015-01-19 Thread Aaron Lewis
Hmm, I'm running a slow network. I tried few times and if internet connection interrupts suddenly, I had to start over .. So I decided to go offline On Tue, Jan 20, 2015 at 12:52 AM, Jens Alfke wrote: > > On Jan 19, 2015, at 8:15 AM, Aaron Lewis wrote: > > I downloaded and

Need help on xcode offline documents, it doesn't recognize the docsets

2015-01-19 Thread Aaron Lewis
uld I do now? It still uses the online version -- Best Regards, Aaron Lewis - PGP: 0x13714D33 - http://pgp.mit.edu/ Finger Print: 9F67 391B B770 8FF6 99DC D92D 87F6 2602 1371 4D33 ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not