[RESOLVED] Re: What UIControl could this be?

2015-02-09 Thread Aaron Lewis
Thanks Todd & David.

I found a similar project and it works great!

On Tue, Feb 10, 2015 at 3:13 AM, Todd Freese
 wrote:
> There are a bunch of projects on github to do this.
>
> Here is one I use and really like it:
>
> https://github.com/dzenbot/DZNSegmentedControl
>
> T
>
>
> On Feb 9, 2015, at 11:49 AM, David Duncan  wrote:
>
> You can use the appearance proxy to change the look of many controls in
> UIKit. In the case of UISegmentedControl you can set background images to
> use for the segments, along with other properties. I think you can 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
>
> In the middle of the View there's a horizontal navigation bar, the
> "190 photos", "429 followers" and "253 following" part.
>
> Looks 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-dev@lists.apple.com)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/david.duncan%40apple.com
>
> This email sent to david.dun...@apple.com
>
>
> --
> David Duncan
>
>
> ___
>
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/applecocoalist%40filmworkers.com
>
> This email sent to applecocoal...@filmworkers.com
>
> __
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> __
>
>
>
> __
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> __



-- 
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 moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: What UIControl could this be?

2015-02-09 Thread Todd Freese
There are a bunch of projects on github to do this. 

Here is one I use and really like it:

https://github.com/dzenbot/DZNSegmentedControl 


T


> On Feb 9, 2015, at 11:49 AM, David Duncan  wrote:
> 
> You can use the appearance proxy to change the look of many controls in 
> UIKit. In the case of UISegmentedControl you can set background images to use 
> for the segments, along with other properties. I think you can 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
>> 
>> In the middle of the View there's a horizontal navigation bar, the
>> "190 photos", "429 followers" and "253 following" part.
>> 
>> Looks 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-dev@lists.apple.com)
>> 
>> Please do not post admin requests or moderator comments to the list.
>> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>> 
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/cocoa-dev/david.duncan%40apple.com
>> 
>> This email sent to david.dun...@apple.com
> 
> --
> David Duncan
> 
> 
> ___
> 
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
> 
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
> 
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/applecocoalist%40filmworkers.com
> 
> This email sent to applecocoal...@filmworkers.com
> 
> __
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> __


__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
__
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: What UIControl could this be?

2015-02-09 Thread David Duncan
You can use the appearance proxy to change the look of many controls in UIKit. 
In the case of UISegmentedControl you can set background images to use for the 
segments, along with other properties. I think you can 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
> 
> In the middle of the View there's a horizontal navigation bar, the
> "190 photos", "429 followers" and "253 following" part.
> 
> Looks 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-dev@lists.apple.com)
> 
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
> 
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/david.duncan%40apple.com
> 
> This email sent to david.dun...@apple.com

--
David Duncan


___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

What UIControl could this be?

2015-02-07 Thread Aaron Lewis
Hi,

I'm trying to create something similar in this image:
http://ui4app.qiniudn.com/photo/app/527dae076803fa9c0103.png

In the middle of the View there's a horizontal navigation bar, the
"190 photos", "429 followers" and "253 following" part.

Looks 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-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com