Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

cocoa touch - ttf font not available for iPhone in interface builder or simulator -


i added font file (.ttf) xcode project, resources. also, added uiappfonts in info.plist.

when want use font though, don't see choice in ib.

after installing font on system, started seeing in ib, still - changing doesn't change - default system font displayed in interface builder in iphone emulator.

are there steps more should able use own font?

to use custom fonts ios have set them programmatically.

for example, suppose have font file called swellfont.ttf add project. go app-info.plist file , add full name of file next index of array keyed uiappfonts, mention.

<key>uiappfonts</key> <array>     <string>swellfont.ttf</string> </array> 

then, use font:

label.font = [uifont fontwithname:@"swellfont" size:12]; 

assuming label uilabel , swellfont.ttf not protected. it's important note uifont's fontwithname not referring filename, instead wanting actual name of font. if open font fontforge can see information selecting element > font info menu bar. there cleverer ways find information out.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -