xcode-NSDictionary读取字符串

问题描述

NSDictionary读取字符串
我想开发一个应用从设置中读取string。要在越狱设备中,我知道不能放在应用商店。不过还需要实现。

我试过用int或者bool,我实现的代码:

int F1;bool F2;

读取代码:

F1 = [[[NSDictionary dictionaryWithContentsOfFile:@""/var/mobile/Library/Preferences/com.xx.pxx.plist""]valueForKey:@""kF1""]intValue];F2 = [[[NSDictionary dictionaryWithContentsOfFile:@""/var/mobile/Library/Preferences/com.xx.pxx.plist""]objectForKey:@""kF2""]boolValue];

在设置Plist中已经做得修改:

<dict>    <key>cell</key>    <string>PSSwitchCell</string>    <key>default</key>    <true/>    <key>defaults</key>    <string>com.xx.pxx</string>    <key>key</key>    <string>kF1</string>    <key>label</key>    <string>Activate the tool</string></dict>

解决方案

没看懂楼主要问什么,是问如何设置 plist 还是如何读取plist文件

时间: 2024-10-28 17:19:20

xcode-NSDictionary读取字符串的相关文章

密封舱-MFC用fscanf去读取字符串,字符串中间不能有空格么?

问题描述 MFC用fscanf去读取字符串,字符串中间不能有空格么? MFC用fscanf去读取字符串,字符串中间不能有空格么?如果有空格,用%s怎么才能正确读取呢? 解决方案 看你的格式限定符怎么写的,你可以自定义分割字符

namespace-cin是如何循环从缓冲区中读取字符串的?

问题描述 cin是如何循环从缓冲区中读取字符串的? 程序如下: #include<iostream> #include<string> using namespace std; int main() { char word[20]; int count=0; cout<<"Enter words,stop with done:"; cin>>word; while(strcmp(word,"done")) //若str

C++实现从输入中读取字符串_C 语言

你可以用这种方式读取一个单独的以空格结束的词: #include<iostream> #include<string> using namespace std; int main(){ cout << "Please enter a word:\n"; string s; cin>>s; cout << "You entered " << s << '\n'; } 注意,这里没有显式

Velocity 读取字符串模板生成代码

本文的原文连接是: http://blog.csdn.net/freewebsys/article/details/49428277 未经博主允许不得转载. 博主地址是:http://blog.csdn.net/freewebsys 1,遇到问题 之前使用 freeMarker 开发 cms系统,生成html. 后来页面不用jsp,开发了,换成velocity展示了. 想着生成页面也使用velocity. 但是发现读取文件的类库加载不进来. 2,解决 参考官方网站例子: http://veloc

js substr读取字符串一部分内容

substr() 函数返回字符串的一部分. 语法 substr(string,start,length) 该方法的arg2和其它两个方法的arg2压根就代表不同意义,所以单独揪出来. 当arg1<0时,不同浏览器的结果不同.IE 直接将arg1改成0, Chrome 下标读取方式由原来的从左往右读改成从右往左读   <?php教程 echo substr("Hello world!",6); ?>输出: world!例子 2 <?php echo substr(

VB.NET 读取字符串的问题,求大侠!!!

问题描述 readprocessmemory申明:PublicDeclareFunctionReadProcessMemoryLib"kernel32"(ByValhProcessAsInteger,ByVallpBaseAddressAsInteger,ByReflpBufferAsInteger,ByValnSizeAsInteger,ByReflpNumberOfBytesWrittenAsInteger)AsInteger代码:Dimname1(31)AsByte'存储人物名称

Perl从文件中读取字符串的两种实现方法_perl

1. 一次性将文件中的所有内容读入一个数组中(该方法适合小文件):  复制代码 代码如下: open(FILE,"filename")||die"can not open the file: $!";@filelist=<FILE>; foreach $eachline (@filelist) {        chomp $eachline;}close FILE;@filelist=<FILE>; 当文件很大时,可能会出现"ou

java创建文件,并向文件中写入字符串,读取字符串到屏幕

public class FileTest01 { public static void writeFileString() { File file = new File("E:\\zkn"); if(!file.isDirectory()) file.mkdir();//创建目录 File fileDir = new File(file,"zkn.txt"); if(!fileDir.isFile()){ try { fileDir.createNewFile()

java中使用freemarker 读取字符串模板的例子

代码如下  代码如下 复制代码 package com.venustech.generate; import freemarker.cache.StringTemplateLoader; import freemarker.template.Configuration; import freemarker.template.Template; import freemarker.template.TemplateException; import java.io.IOException; imp