詳細的網址為下
畫面很不錯但是我想應該還可以修正更好
有需要的朋友們可以拿來使用看看
這是我套用他的寫法產生出來的畫面
本來的畫面
我個人是比較喜歡修改過後的文字呈現拉
有需要的朋友們可以去看看原作者寫的方法
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"read" ofType:@"plist"];
NSMutableDictionary *plistData = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
read txt
NSString *txtpath = [[NSBundle mainBundle] pathForResource:@"read" ofType:@"txt"];
NSString *txtText = [NSString stringWithContentsOfFile:txtpath encoding:NSUTF8StringEncoding error:nil];
完整的
NSString *appDisplayNameString = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"];
簡短的
NSString *appBundleNameString = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"];
取得程式版本
NSString *appVersionString = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"];
.post code {
display: block; /* fixes a strange ie margin bug */
font-family: Courier New;
font-size: 10pt;
margin:.75em 0;
overflow: auto;
background: #000000 left top repeat-y;
border: 1px solid #ccc;
padding: 10px 10px 10px 21px;
line-height: 1.2em;
white-space: pre;
}