Posts

Navigation Controller pushViewController [JASidePanels]

JASidePanels Try setting  panningLimitedToTopViewController = NO;  on the JASidePanelController. - ( id )initWithNibName:( NSString *)nibNameOrNil bundle:( NSBundle *)nibBundleOrNil {     self . slidePanel = [[ JASidePanelController alloc ] init ];     self . slidePanel . panningLimitedToTopViewController = NO ; ... ... ... ... ... .. .  } slidePanel :>  @property ( strong , nonatomic ) JASidePanelController * slidePanel;   @class JASidePanelController ; From: Github

How to check if a font is available in version of iOS?

The following example code prints a list of each font in every family on the current device: NSArray * fontFamilies = [ UIFont familyNames ]; for ( int i = 0 ; i < [ fontFamilies count ]; i ++) { NSString * fontFamily = [ fontFamilies objectAtIndex : i ]; NSArray * fontNames = [ UIFont fontNamesForFamilyName :[ fontFamilies objectAtIndex : i ]]; NSLog (@ "%@: %@" , fontFamily , fontNames ); } From: StackOverflow

SUPPORTED AUDIO FORMATS

Image
Sonos supports streaming the formats listed below. Whether or not you are streaming over SonosNet or Ethernet wired Sonos components, Sonos does not downsample audio streams in any way. For better quality streams, we recommend using a lossless codec such as Apple Lossless or FLAC. Both of these formats are compressed lossless formats. This give you the lossless quality and due to the compression, you save space compared to other formats like WAV or AIFF. Metadata support for these formats is better as well.  Click any of the links below for more information:  - MP3 Details From Wikipedia.org When ripping to an MP3 file, there is a trade-off between the amount of space used and the sound quality of the result. Typically, the creator is allowed to set a bit rate, which specifies how many kilobits the file may use per second of audio. Using a lower bit rate provides a relatively lower audio quality and produces a smaller file size. Likewise, using a higher bit rat...

Steps to connect to Sql server on Windows Azure Virtual Machine from local machine

Here are the detailed steps to connection Sql instance in a Windows Azure Virtual Machine, from your local machine, through SQL Server Management Studio. Assume you have already had Sql Server installed on the VM, and SSMS installed on your local machine. 1, Configure your virtual machine’s firewall to allow connection to port 1433 a)      Go to windows firewall, launch Advanced Settings; b)      Select Inbound rules on the left, and click “New Rule…” on the right; c)       Select Port in New Inbound Rule Wizard, click Next; d)      Make sure TCP is selected, and put 1433 in Specific local ports text box, click Next; e)      Select Allow the connection, click Next; f)       Select Domain, Private and Public, click Next; g)      Put whatever name in the Name field, click Finish; 2, Cr...

iOS Open Source Facebook/Path liked Sidebar Menu implementation

Image
mystcolor/JTRevealSidebarDemo - GitHub github.com/ mystcolor/JTRevealSidebarDemo Added by  @mystcolor  1 year ago JTRevealSidebarDemo - A carefully implemented iOS objective-c library to mimic the sidebar layout of the new Facebook app and Path 2.0 app. (archive) @mystcolor:   That's my implementation, sidebar is just like configuring navigationItems. 1 year ago Info+ devindoty/DDMenuController - GitHub github.com/ devindoty/DDMenuController Added by  @mystcolor  1 year ago DDMenuController - Menu controller similar to the one found in Facebook and Path 2.0 on iOS @mystcolor:   Good 1 year ago Info+ pkluz/ZUUIRevealController - GitHub github.com/ pkluz/ZUUIRevealController Added by  @mystcolor  1 year ago ZUUIRevealController has moved to PKRevealController! URL to new repository: https://github.com/pkluz/PKRevealController @mystcolor:   Good 1 year ago Inf...